From 34e570a5eb5d04e67d7034040d9fa2272adf34c2 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 Signed-off-by: Paul Poulain --- t/00-load.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/00-load.t b/t/00-load.t index afff47d..5d7ad8f 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.9.5