Run author side tests always
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
index b589ece..05d64f5 100644 (file)
@@ -5,9 +5,11 @@ use warnings;
 
 use Test::More;
 
-BEGIN {        
+BEGIN {
     eval "use Test::JSON";
-    plan skip_all => "Test::JSON is required for this test" if $@;            
+    plan skip_all => "Test::JSON is required for this test" if $@;
+    eval "use JSON::Any";
+    plan skip_all => "JSON::Any is required for this test" if $@;
     plan tests => 12;
     use_ok('MooseX::Storage');
 }