X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/86e57ee7249734545974d4b8ba2de3bcea6575a3..a74ef4ee5f93ac14d3ee03bf70a78d6a192e351f:/spec/timetable_spec.lua diff --git a/spec/timetable_spec.lua b/spec/timetable_spec.lua index a80b9ad..9a16af5 100644 --- a/spec/timetable_spec.lua +++ b/spec/timetable_spec.lua @@ -11,14 +11,16 @@ describe ( "Time table library" , function ( ) assert.are.same ( 5 , doomsday(1968) ) end ) + local function native_normalise ( year , month , day ) + return os.date("*t",os.time{ + year = year ; + month = month ; + day = day ; + }) + end + it ( "Get day of week correct" , function ( ) - local function native_normalise ( year , month , day ) - return os.date("*t",os.time{ - year = year ; - month = month ; - day = day ; - }) - end + local function assert_same_wday ( year , month , day ) return assert.are.same ( native_normalise ( year , month , day ).wday , @@ -47,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 )