renovations
This commit is contained in:
parent
c7d4c7e3ff
commit
e1948130f6
170 changed files with 1496 additions and 1161 deletions
|
@ -0,0 +1,20 @@
|
|||
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();
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue