Newer
Older
pixi.js / test / unit / pixi-v2 / core / Matrix.js
@Dr. Kibtiz Dr. Kibtiz on 21 Mar 2015 336 bytes Moved old tests to pixi-v2 dir
describe('pixi/core/Matrix', function () {
    'use strict';

    var expect = chai.expect;

    it('Matrix exists', function () {
        expect(PIXI.Matrix).to.be.an('function');
    });

    it('Confirm new Matrix', function () {
        var matrix = new PIXI.Matrix();
        pixi_core_Matrix_confirmNewMatrix(matrix);
    });
});