-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.js
48 lines (37 loc) · 1.07 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
describe('Ladder', function() {
before(function() {
window.alert = sinon.stub(window, "alert");
});
beforeEach(function() {
ladder.step = 0;
});
it('up() should return this', function() {
assert.equal(ladder.up(), ladder);
});
it('down() should return this', function() {
assert.equal(ladder.down(), ladder);
});
it('showStep() should call alert', function() {
ladder.showStep();
assert(alert.called);
});
it('up() should increase step', function() {
assert.equal(ladder.up().up().step, 2);
});
it('down() should decrease step', function() {
assert.equal(ladder.down().step, -1);
});
it('down().up().up().up() ', function() {
assert.equal(ladder.down().up().up().up().step, 2);
});
it('showStep() should return this', function() {
assert.equal(ladder.showStep(), ladder);
});
it('up().up().down().showStep().down().showStep()', function () {
assert.equal(ladder.up().up().down().showStep().down().showStep().step, 0)
});
after(function() {
ladder.step = 0;
alert.restore();
});
});