en.javascript.info/1-js/5-functions-closures/5-closures-usage/6-make-army/_js.view/test.js
Ilya Kantor 87bf53d076 update
2014-11-16 01:40:20 +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();
});