From 2fda5d04c1dd3d24acb02c79cd99194a634eaef2 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 Signed-off-by: Jared Camins-Esakov --- t/00-load.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/00-load.t b/t/00-load.t index afff47d213..5d7ad8f2a7 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'"); }, }, -- 2.39.2