Bug 7119 - tidy t/00-load.t
authorChristopher Nighswonger <cnighswonger@cnighswonger-dt.(none)>
Thu, 8 Nov 2012 20:29:48 +0000 (15:29 -0500)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Mon, 12 Nov 2012 23:39:04 +0000 (18:39 -0500)
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
t/00-load.t

index afff47d..197636c 100644 (file)
@@ -12,23 +12,23 @@ 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 =~ /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 if $m =~ /C4::Members::Statistics/; # DB
         use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'");
     },