Newer
Older
pixi.js / test / unit / pixi / textures / BaseTexture.js
@mathew groves mathew groves on 29 Sep 2014 323 bytes Removed update and destroy webGL functions
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');
    });
});