all files / common/models/stage/ stage.mocha.js

100% Statements 5/5
100% Branches 0/0
100% Functions 2/2
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28                                             
"use strict";
var tester_1 = require('immutable-class/build/tester');
var stage_1 = require('./stage');
describe('Stage', function () {
    it('is an immutable class', function () {
        tester_1.testImmutableClass(stage_1.Stage, [
            {
                x: 10,
                y: 5,
                height: 2,
                width: 2
            },
            {
                x: 10,
                y: 500,
                height: 2,
                width: 2
            },
            {
                x: 10,
                y: 5,
                height: 3,
                width: 2
            }
        ]);
    });
});