-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseries.spec.js
More file actions
60 lines (47 loc) · 1.63 KB
/
series.spec.js
File metadata and controls
60 lines (47 loc) · 1.63 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
var Series = require('./series');
describe('Series', function () {
it('has digits (short)', function () {
expect(new Series('01234').digits).toEqual([0, 1, 2, 3, 4]);
});
xit('has digits (long)', function () {
expect(new Series('0123456789').digits)
.toEqual([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
});
xit('keeps the digit order if reversed', function () {
expect(new Series('9876543210').digits)
.toEqual([9, 8, 7, 6, 5, 4, 3, 2, 1, 0]);
});
xit('keeps arbitrary digit order', function () {
expect(new Series('936923468').digits)
.toEqual([9, 3, 6, 9, 2, 3, 4, 6, 8]);
});
xit('can slice by 1', function () {
expect(new Series('01234').slices(1))
.toEqual([[0], [1], [2], [3], [4]]);
});
xit('can slice by 2', function () {
expect(new Series('98273463').slices(2))
.toEqual([[9, 8], [8, 2], [2, 7], [7, 3], [3, 4], [4, 6], [6, 3]]);
});
xit('can slice by 3', function () {
expect(new Series('01234').slices(3))
.toEqual([[0, 1, 2], [1, 2, 3], [2, 3, 4]]);
});
xit('can slice by 3 with duplicate digits', function () {
expect(new Series('31001').slices(3))
.toEqual([[3, 1, 0], [1, 0, 0], [0, 0, 1]]);
});
xit('can slice by 4', function () {
expect(new Series('91274').slices(4))
.toEqual([[9, 1, 2, 7], [1, 2, 7, 4]]);
});
xit('can slice by 5', function () {
expect(new Series('81228').slices(5))
.toEqual([[8, 1, 2, 2, 8]]);
});
xit('throws an error if not enough digits to slice', function () {
expect( function () {
new Series('01032987583').slices(12);
}).toThrow(new Error('Slice size is too big.'));
});
});