Sha256: 6f840a1dc05b8db564d327ae5b3136a3afbd306bbeb292097b77eb3e81ca2bd4
Contents?: true
Size: 1.63 KB
Versions: 255
Compression:
Stored size: 1.63 KB
Contents
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.')); }); });
Version data entries
255 entries across 255 versions & 1 rubygems