From f9140a46e242856a6b8a8b4b2d171fa478d79564 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 2 Oct 2015 11:01:19 -0400 Subject: [PATCH] Bug 14522 [QA Followup] * Change POD to a brief comment * Fix UT so it doesn't fail on Sundays --- Koha/Calendar.pm | 24 +++++++----------------- t/db_dependent/Holidays.t | 3 +++ 2 files changed, 10 insertions(+), 17 deletions(-) diff --git a/Koha/Calendar.pm b/Koha/Calendar.pm index be2a6c8..383b092 100644 --- a/Koha/Calendar.pm +++ b/Koha/Calendar.pm @@ -95,23 +95,13 @@ sub single_holidays { my $cache = Koha::Cache->get_instance(); my $single_holidays = $cache->get_from_cache('single_holidays'); -=for -$single_holidays looks like this.. - -\ { - CPL [ - [0] 20131122, - [1] 20131123, - [2] 20131124 - ], - MPL [ - [0] 20131122, - [1] 20131123, - [2] 20131124 - ] -} - -=cut + # $single_holidays looks like: + # { + # CPL => [ + # [0] 20131122, + # ... + # ], + # } unless ($single_holidays) { my $dbh = C4::Context->dbh; diff --git a/t/db_dependent/Holidays.t b/t/db_dependent/Holidays.t index e1bf910..fb9b1fa 100755 --- a/t/db_dependent/Holidays.t +++ b/t/db_dependent/Holidays.t @@ -97,6 +97,9 @@ is( $koha_calendar->is_holiday($monday), 0, 'Monday is not a closed day' ); is( $koha_calendar->is_holiday($christmas), 1, 'Christmas is a closed day' ); is( $koha_calendar->is_holiday($newyear), 1, 'New Years day is a closed day' ); +$dbh->do("DELETE FROM repeatable_holidays"); +$dbh->do("DELETE FROM special_holidays"); + my $custom_holiday = DateTime->new( year => 2013, month => 11, -- 1.7.2.5