describe('PIXI.Text', function () { describe('destroy', function () { it('should call through to Sprite.destroy', function () { var text = new PIXI.Text("foo"); expect(text.anchor).to.not.equal(null); text.destroy(); expect(text.anchor).to.equal(null); }); it('should set context to null', function () { var text = new PIXI.Text("foo"); expect(text.style).to.not.equal(null); text.destroy(); expect(text.style).to.equal(null); }); it('should destroy children if children flag is set', function () { var text = new PIXI.Text("foo"), child = new PIXI.DisplayObject(); text.addChild(child); text.destroy({children: true}); expect(text.position).to.equal(null); expect(child.position).to.equal(null); }); it('should pass opts on to children if children flag is set', function () { var text = new PIXI.Text("foo"), child = new PIXI.DisplayObject(), childDestroyOpts; child.destroy = function(opts) { childDestroyOpts = opts; }; text.addChild(child); text.destroy({children: true, texture: true}); expect(childDestroyOpts).to.deep.equal({children: true, texture: true}); }); }); });