Fix issue with test when Best isn't available
Tomas Doran [Mon, 29 Sep 2008 15:02:18 +0000 (15:02 +0000)]
Changes
t/040_basic_utils.t

diff --git a/Changes b/Changes
index 94a33ef..4ef661b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for MooseX-Storage
 
+0.16
+   * Don't fail tests when Best is unavailable (t0m)
+
 0.15
     * MooseX::Storage
       - Remove use of deprecated alias_method routine
index 3e1690c..1b65efd 100644 (file)
@@ -75,7 +75,9 @@ SKIP: {
     my $classname = eval { 
         MooseX::Storage::Util->peek($yaml => ('format' => 'YAML'))
     };
-    if ($@ =~ /^Could not load YAML module because/) {
+    if ($@ =~ /^Could not load YAML module because/
+        or $@ =~ /^Can't locate Best/
+    ) {
         skip "No YAML module found", 1;
     }