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