X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;ds=sidebyside;f=t%2F00-load.t;h=6a5a223d1aa86ba1e2e0c318d9056e2baebeaf73;hb=03b7c9f8b96cb995121b9ff80a531475f7317a8e;hp=fa8181fdc342722ace514dbd1f6db738b1e18eee;hpb=2c470899b3f0191b9597d713e895b9240fe1d137;p=koha_fer diff --git a/t/00-load.t b/t/00-load.t index fa8181fdc3..6a5a223d1a 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -12,24 +12,42 @@ find({ no_chdir => 1, 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 - 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 + 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 =~ /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::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::Reports::Guided/; # DB + return if $m =~ /C4::VirtualShelves::Page/; # DB + return if $m =~ /C4::Members::Statistics/; # 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 + return if $m =~ /Koha::Cache::Memcached/; # optional dependency + use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); + }, + }, + $lib +); + + done_testing();