X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/6237e6cb540b93ff099dcbacdf26d155ea330df8..cce108c5533a9c7386949a4fd008b73638247177:/spec/timetable_spec.lua?ds=sidebyside diff --git a/spec/timetable_spec.lua b/spec/timetable_spec.lua index 38ded15..4cadbbc 100644 --- a/spec/timetable_spec.lua +++ b/spec/timetable_spec.lua @@ -1,5 +1,5 @@ describe ( "Time table library" , function ( ) - local timetable = require "timetable" + local timetable = require "luatz.timetable" it ( "Doomsday calculation" , function ( ) local doomsday = timetable.doomsday @@ -49,5 +49,9 @@ describe ( "Time table library" , function ( ) assert.same ( native_timestamp ( y,m,1 ) , timetable.timestamp(y,m,1,0,0,0) ) end end - end) + end ) + + it ( "Out of range month is normalised" , function ( ) + assert.same ( { timetable.normalise(2013,0,1,0,0,0) } , { 2012,12,1,0,0,0 } ) + end ) end )