[Koha-patches] [PATCH] Bug 8924: Some modules erroneously skipped by 00-load

Jared Camins-Esakov jcamins at cpbibliography.com
Tue Oct 16 11:34:28 CEST 2012


Several patterns were being skipped unnecessarily in t/00-load.t:
* C4::Cache* - no longer exists
* C4::Record - no longer requires database
* C4::Serials - no longer requires database
---
 t/00-load.t |    3 ---
 1 file changed, 3 deletions(-)

diff --git a/t/00-load.t b/t/00-load.t
index 748fa10..b39731a 100644
--- a/t/00-load.t
+++ b/t/00-load.t
@@ -16,7 +16,6 @@ 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
@@ -25,9 +24,7 @@ find({
 	    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'");
-- 
1.7.9.5


More information about the Koha-patches mailing list