20 lines
No EOL
352 B
JavaScript
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();
|
|
}); |