0.12
[gitmo/MooseX-Storage.git] / t / 002_basic_io.t
index 4474eb6..971261b 100644 (file)
@@ -3,7 +3,14 @@
 use strict;
 use warnings;
 
-use Test::More tests => 9;
+use Test::More;
+
+BEGIN {        
+    eval "use JSON::Any";
+    plan skip_all => "JSON::Any is required for this test" if $@;            
+    plan tests => 10;
+    use_ok('MooseX::Storage');
+}
 
 {
     package Foo;