Sha256: 4ca3badfd9a9a6991029770faad611b89db86b98a30e244a177b4b762d166baf
Contents?: true
Size: 417 Bytes
Versions: 396
Compression:
Stored size: 417 Bytes
Contents
local is_leap_year = require('leap') describe('leap', function() it('a known leap year', function() assert.is_true(is_leap_year(1996)) end) it('any old year', function() assert.is_false(is_leap_year(1997)) end) it('turn of the 20th century', function() assert.is_false(is_leap_year(1900)) end) it('turn of the 21st century', function() assert.is_true(is_leap_year(2400)) end) end)
Version data entries
396 entries across 396 versions & 1 rubygems