-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbinary.spec.js
More file actions
48 lines (37 loc) · 1.31 KB
/
binary.spec.js
File metadata and controls
48 lines (37 loc) · 1.31 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
var Binary = require('./binary');
describe('binary', function() {
it('0 is decimal 0', function() {
expect(new Binary('0').toDecimal()).toEqual(0);
});
xit('1 is decimal 1', function() {
expect(new Binary('1').toDecimal()).toEqual(1);
});
xit('10 is decimal 2', function() {
expect(new Binary('10').toDecimal()).toEqual(2);
});
xit('11 is decimal 3', function() {
expect(new Binary('11').toDecimal()).toEqual(3);
});
xit('100 is decimal 4', function() {
expect(new Binary('100').toDecimal()).toEqual(4);
});
xit('1001 is decimal 9', function() {
expect(new Binary('1001').toDecimal()).toEqual(9);
});
xit('11010 is decimal 26', function() {
expect(new Binary('11010').toDecimal()).toEqual(26);
});
xit('10001101000 is decimal 1128', function() {
expect(new Binary('10001101000').toDecimal()).toEqual(1128);
});
xit('00011111 is decimal 31', function() {
expect(new Binary('00011111').toDecimal()).toEqual(31);
});
xit('invalid inputs are decimal 0', function() {
expect(new Binary('carrot').toDecimal()).toEqual(0);
expect(new Binary('012').toDecimal()).toEqual(0);
expect(new Binary('10nope').toDecimal()).toEqual(0);
expect(new Binary('nope10').toDecimal()).toEqual(0);
expect(new Binary('10nope10').toDecimal()).toEqual(0);
});
});