Sha256: f0b8959f9ae6e3554c6291a6d543c610016cefa8c07e8680a496917b343b236b
Contents?: true
Size: 893 Bytes
Versions: 183
Compression:
Stored size: 893 Bytes
Contents
var Luhn = require('./luhn'); describe('Luhn',function() { it('single digit strings can not be valid', function () { const luhn = new Luhn('1'); expect(luhn.valid).toEqual(false); }); xit('A single zero is invalid', function () { const luhn = new Luhn('0'); expect(luhn.valid).toEqual(false); }); xit('valid Canadian SIN', function () { const luhn = new Luhn('046 454 286'); expect(luhn.valid).toEqual(true); }); xit('invalid Canadian SIN', function () { const luhn = new Luhn('046 454 287'); expect(luhn.valid).toEqual(false); }); xit('invalid credit card', function () { const luhn = new Luhn('8273 1232 7352 0569'); expect(luhn.valid).toEqual(false); }); xit('valid strings with a non-digit added become invalid', function () { const luhn = new Luhn('046a 454 286'); expect(luhn.valid).toEqual(false); }); });
Version data entries
183 entries across 183 versions & 1 rubygems