From 6237e6cb540b93ff099dcbacdf26d155ea330df8 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Wed, 24 Jul 2013 11:53:43 -0400 Subject: [PATCH] spec/timetable_spec: Move native function to outer scope --- spec/timetable_spec.lua | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) 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 , -- 2.39.2