From: daurnimator Date: Wed, 24 Jul 2013 15:53:43 +0000 (-0400) Subject: spec/timetable_spec: Move native function to outer scope X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/6237e6cb540b93ff099dcbacdf26d155ea330df8 spec/timetable_spec: Move native function to outer scope --- diff --git a/spec/timetable_spec.lua b/spec/timetable_spec.lua index a80b9ad..38ded15 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 ,