Newer
Older
pixi.js / test / unit / pixi / core / Matrix.js
@Chad Engler Chad Engler on 2 Feb 2014 475 bytes Remove all references to mat3 or mat4
describe('pixi/core/Matrix', function () {
    'use strict';

    var expect = chai.expect;

    it('Ensure determineMatrixArrayType exists', function () {
        expect(PIXI.determineMatrixArrayType).to.be.a('function');
    });

    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);
    });
});