25 lines
391 B
JavaScript
25 lines
391 B
JavaScript
describe("army", function() {
|
|
|
|
let army;
|
|
|
|
before(function() {
|
|
army = makeArmy();
|
|
window.alert = sinon.stub(window, "alert");
|
|
});
|
|
|
|
it("army[0] shows 0", function() {
|
|
army[0]();
|
|
assert(alert.calledWith(0));
|
|
});
|
|
|
|
|
|
it("army[5] shows 5", function() {
|
|
army[5]();
|
|
assert(alert.calledWith(5));
|
|
});
|
|
|
|
after(function() {
|
|
window.alert.restore();
|
|
});
|
|
|
|
});
|