@@ -, +, @@ should not this patch adds code to skip this module during this test --- t/00-load.t | 1 + 1 file changed, 1 insertion(+) --- a/t/00-load.t +++ a/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'"); }, }, --