en.javascript.info/1-js/5-functions-closures/4-closures-usage/6-make-army/_js.view/test.js
2015-01-14 10:23:45 +03:00

20 lines
No EOL
352 B
JavaScript

var army;
before(function() {
army = makeArmy();
window.alert = sinon.stub(window, "alert");
});
it("army[0] выводит 0", function() {
army[0]();
assert(alert.calledWith(0));
});
it("army[5] функция выводит 5", function() {
army[5]();
assert(alert.calledWith(5));
});
after(function() {
window.alert.restore();
});