X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=t%2F00-load.t;h=8f96e22cbba9fc62e4f05bcef2f6c4ad5625fe77;hb=1610a7d61cf5cd9a58edb0630640b18b973ce8dd;hp=6b3172c2e48971add40fe76886a8c239ec968639;hpb=7ecf2c2dc42d443d819ed04e3a11065f2802d51a;p=koha_gimpoz diff --git a/t/00-load.t b/t/00-load.t index 6b3172c2e4..8f96e22cbb 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -3,23 +3,51 @@ use strict; use warnings; use Test::More; -use Path::Class; +use File::Spec; use File::Find; -my $lib = dir('C4')->absolute->resolve; +my $lib = File::Spec->rel2abs('C4'); find({ bydepth => 1, no_chdir => 1, wanted => sub { my $m = $_; - return unless $m =~ s/[.]pm$//; - 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 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 + 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; + use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); + }, + }, + $lib +); + + done_testing(); -