Plato on Github
Report Home
test/spec/spritemanager.js
Maintainability
146.73
Lines of code
18
Difficulty
7.00
Estimated Errors
0.10
Function weight
By Complexity
By SLOC
define('spec/spritemanager', ['lyria/sprite/manager'], function(SpriteManager) { describe('lyria/sprite/manager', function() { var spriteManager = new SpriteManager(); it('is a function', function() { expect(SpriteManager).to.be.a('function'); }); it('can be instantiated', function() { expect(spriteManager).to.be.a('object'); expect(spriteManager).to.be.an.instanceOf(SpriteManager); }); }); });