From f8096b15c539b327c4353a43a3a9463fb5d036ee Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 12 Sep 2013 07:36:24 +0200 Subject: [PATCH] Bug 10667: Follow up - prevent t/00-load from failing To test: - Apply first 2 patches for unit tests and changes to Services.pm - Turn off mysql - Run t/00-load.t - Verify that the test fails. - Apply this third patch. - Run t/00-load.t again. - Verify this time it passes. --- t/00-load.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/00-load.t b/t/00-load.t index 002a82d..4f33e60 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -19,6 +19,7 @@ find({ 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::ILSDI::Services/; # DB return if $m =~ /C4::Tags$/; # DB return if $m =~ /C4::Service/; # DB return if $m =~ /C4::Auth_with_cas/; # DB -- 1.7.9.5