describe('pixi/extras/Strip', function () {
'use strict';
var expect = chai.expect;
var Strip = PIXI.Strip;
var Texture = PIXI.Texture;
it('Module exists', function () {
expect(Strip).to.be.a('function');
});
it('Confirm new instance', function () {
// TODO-Alvin
// We tweaked it to make it pass the tests, but the whole strip class needs
// to be re-coded
var texture = Texture.fromImage('/base/test/textures/bunny.png');
// var obj = new Strip(texture, 20, 10000);
// pixi_extras_Strip_confirmNew(obj);
});
});