From 683f28418dc1fe7d6d877efd5fcdba167faff06a 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 Content-Type: text/plain; charset="utf-8" --- t/00-load.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/00-load.t b/t/00-load.t index 3cf7a24..fbd7082 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