diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-05-08 11:54:18 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2012-05-08 11:54:18 +0100 |
commit | 8e6d4162ed7ca52598abf78f10317be0d77518a9 (patch) | |
tree | 4077f1c22bd277ff2fc3048148052cefccd576b0 /test | |
parent | deb14e7bc1979343188a0130d34bef16256e17ca (diff) |
Fixed time tests + standardised dead zone + daylight hours.
Diffstat (limited to 'test')
-rw-r--r-- | test/tc_mauve_time.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tc_mauve_time.rb b/test/tc_mauve_time.rb index 66cb4f7..96f789a 100644 --- a/test/tc_mauve_time.rb +++ b/test/tc_mauve_time.rb @@ -9,15 +9,15 @@ class TestMauveTime < Mauve::UnitTest def test_in_x_hours # - # 5pm on a Friday + # 5:44pm on a Friday # - t = Time.local(2011,6,3,17,14,32) + t = Time.local(2011,6,3,17,44,32) # # Working hours.. # - hour_0 = Time.local(2011,6,6,9,0,0) - hour_1 = Time.local(2011,6,6,10,0,0) + hour_0 = Time.local(2011,6,6,9,30,0) + hour_1 = Time.local(2011,6,6,10,30,0) assert_equal(hour_1, t.in_x_hours(1,"working")) assert_equal(hour_0, t.in_x_hours(0,"working")) |