From 66de7d0e17745ff93bcf3d10dc9f83cdb39290fc Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 18 Oct 2013 04:27:42 +0000 Subject: [PATCH] Bug 10380: (follow-up) remove inadvertant database dependency for t/DateUtils.t Signed-off-by: Galen Charlton --- t/DateUtils.t | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/t/DateUtils.t b/t/DateUtils.t index cdff2affaf..0f8f2b91e8 100755 --- a/t/DateUtils.t +++ b/t/DateUtils.t @@ -6,6 +6,7 @@ use DateTime::TimeZone; use C4::Context; use Test::More tests => 31; +use Test::MockModule; BEGIN { use_ok('Koha::DateUtils'); } @@ -25,6 +26,14 @@ $dt->set_minute(0); my $date_string; +my $module_context = new Test::MockModule('C4::Context'); +$module_context->mock( + 'preference', + sub { + return 'us'; + } +); + my $dateformat = C4::Context->preference('dateformat'); cmp_ok output_pref({ dt => $dt, dateformat => $dateformat }), 'eq', -- 2.20.1