X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2F00-load.t;h=da9008d5482321adb0beeed9ccc3c6c66f86c7cc;hb=3b608056d9cd86375b51d63a56c054fec1f4a16d;hp=b5c7181f87590a334d11f1f5f0526600d8f17825;hpb=5278aa0ca4bb5110741b792b527725280a3ee902;p=koha.git diff --git a/t/00-load.t b/t/00-load.t index b5c7181f87..da9008d548 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -13,12 +13,42 @@ find({ wanted => sub { my $m = $_; return unless $m =~ s/[.]pm$//; + $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 - $m =~ s{^.*/C4/}{C4/}; - $m =~ s{/}{::}g; - use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); + return if $m =~ /C4::VirtualShelves$/; # Requires a DB + return if $m =~ /C4::Auth$/; # 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 + use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); }, }, $lib); + +$lib = File::Spec->rel2abs('Koha'); +find( + { + bydepth => 1, + no_chdir => 1, + wanted => sub { + my $m = $_; + return unless $m =~ s/[.]pm$//; + $m =~ s{^.*/Koha/}{Koha/}; + $m =~ s{/}{::}g; + return if $m =~ /Koha::SearchEngine::/; # Koha::SearchEngine::* are experimental + use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); + }, + }, + $lib +); + + done_testing();