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

    var expect = chai.expect;
    var BaseTexture = PIXI.BaseTexture;

    it('Module exists', function () {
        expect(BaseTexture).to.be.a('function');
        expect(PIXI).to.have.property('BaseTextureCache').and.to.be.an('object');
    });
});