X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2F00-load.t;h=b786a056032cf852cd8c62639f353e44e94e8d37;hb=HEAD;hp=a154c7a9dd12cc38ee30a50876caa5bdf8c684f8;hpb=8263f5bdb4959100fbff494be03f8fc1b8c73de1;p=koha.git diff --git a/t/00-load.t b/t/00-load.t index a154c7a9dd..b786a05603 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -16,20 +16,19 @@ find({ $m =~ s{^.*/C4/}{C4/}; $m =~ s{/}{::}g; return if $m =~ /Auth_with_ldap/; # Dont test this, it will fail on use - return if $m =~ /Cache/; # Cache modules are a WIP, add the tests back when we are using them more return if $m =~ /SIP/; # SIP modules will not load clean return if $m =~ /C4::VirtualShelves$/; # Requires a DB return if $m =~ /C4::Auth$/; # DB + return if $m =~ /C4::ILSDI::Services/; # DB return if $m =~ /C4::Tags$/; # DB return if $m =~ /C4::Service/; # DB return if $m =~ /C4::Auth_with_cas/; # DB return if $m =~ /C4::BackgroundJob/; # DB return if $m =~ /C4::UploadedFile/; # DB - return if $m =~ /C4::Record/; # DB return if $m =~ /C4::Reports::Guided/; # DB - return if $m =~ /C4::Serials/; # DB return if $m =~ /C4::VirtualShelves::Page/; # DB return if $m =~ /C4::Members::Statistics/; # DB + return if $m =~ /C4::Serials/; # needs context use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); }, }, $lib); @@ -44,8 +43,7 @@ find( return unless $m =~ s/[.]pm$//; $m =~ s{^.*/Koha/}{Koha/}; $m =~ s{/}{::}g; - return if $m =~ /Koha::SearchEngine::/; # Koha::SearchEngine::* are experimental - return if $m =~ /Koha::Cache::Memcached/; # optional dependency + return if $m =~ /Koha::SearchEngine/; # Koha::SearchEngine::* are experimental use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); }, },