From ce803617489793f5f78b27eec128613d4d8cd10a Mon Sep 17 00:00:00 2001 From: Chris Nighswonger Date: Thu, 8 Nov 2012 16:06:47 -0500 Subject: [PATCH] Bug 9036 - 00-load.t checks Koha::Cache::Memcached when it should not this patch adds code to skip this module during this test Signed-off-by: Chris Cormack --- t/00-load.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/00-load.t b/t/00-load.t index 197636c..a154c7a 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -45,6 +45,7 @@ find( $m =~ s{^.*/Koha/}{Koha/}; $m =~ s{/}{::}g; return if $m =~ /Koha::SearchEngine::/; # Koha::SearchEngine::* are experimental + return if $m =~ /Koha::Cache::Memcached/; # optional dependency use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); }, }, -- 1.7.10.4