Bug 8435: (follow-up) prevent t/00-load.t failing
authorGalen Charlton <gmc@esilibrary.com>
Thu, 31 Oct 2013 18:51:04 +0000 (18:51 +0000)
committerGalen Charlton <gmc@esilibrary.com>
Thu, 31 Oct 2013 18:51:04 +0000 (18:51 +0000)
C4::Serials now needs a valid context in order to
load.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
t/00-load.t

index 4f33e60..b786a05 100644 (file)
@@ -28,6 +28,7 @@ find({
         return if $m =~ /C4::Reports::Guided/; # DB
         return if $m =~ /C4::VirtualShelves::Page/; # DB
         return if $m =~ /C4::Members::Statistics/; # DB
+        return if $m =~ /C4::Serials/; # needs context
         use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'");
     },
 }, $lib);