Newer
Older
pixi.js / test / unit / pixi / core / Matrix.js
@mathew groves mathew groves on 29 Sep 2014 336 bytes Updated the Matrix class
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);
    });
});