it('should equal 55 when n === 10’, function () { main.fibonacci(10).should.equal(55); });
it('should throw when n > 10', function () {
(function () {
main.fibonacci(11);
}).should.throw('n should <= 10');
});
it('should equal 55 when n === 10’, function () { main.fibonacci(10).should.equal(55); });
it('should throw when n > 10', function () {
(function () {
main.fibonacci(11);
}).should.throw('n should <= 10');
});