Sha256: 25110b96da13a0c697990429c065dadc94f639aafcd16878cbc051f61731d92d
Contents?: true
Size: 893 Bytes
Versions: 141
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
141 entries across 141 versions & 1 rubygems