From e959c0fe4c887154bbe28c31324fef2975cbe467 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Wed, 25 Apr 2012 17:15:49 +0100 Subject: Big update. * Max acknowledgement time is now specified in the config * Calendar interface improved. * holiday_url no longer used -- replaced by notify_when_on_holiday! * added notify_when_off_sick! * Added ability for the calendar to be queried for a list of bank holdays. * Added ability for Time to be given a list of bank holidays to check against. * PeopleLists can now be a Proc, allowing downloading of lists * Person is no longer a struct * Moved the method_missing bit into ObjectBuilder from various sub classes. * Added tests for the calendar interface * Updated tests in other bits. --- test/tc_mauve_time.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test/tc_mauve_time.rb') diff --git a/test/tc_mauve_time.rb b/test/tc_mauve_time.rb index 7a8fefa..6e5989b 100644 --- a/test/tc_mauve_time.rb +++ b/test/tc_mauve_time.rb @@ -35,8 +35,15 @@ class TestMauveTime < Mauve::UnitTest assert_equal(hour_1, t.in_x_hours(1,"working")) assert_equal(hour_0, t.in_x_hours(0,"working")) + end + + def test_bank_holiday? + x = Time.now + assert(!x.bank_holiday?) + x.bank_holidays << Date.new(x.year, x.month, x.day) + assert(x.bank_holiday?) end -- cgit v1.2.1