also document the r/w repo for gitmo users
[gitmo/MooseX-Storage.git] / t / 011_basic_json_w_utf8.t
index bcec79b..a56dde0 100644 (file)
@@ -5,18 +5,22 @@ use warnings;
 
 use Test::More;
 
+use Test::Requires {
+    'Encode' => 0.01, # skip all if not installed
+    'JSON::Any' => 0.01,
+};
+
 BEGIN {
-    eval "use Encode";
-    plan skip_all => "Encode is required for this test" if $@;    
     # NOTE: 
     # this is because JSON::XS is 
     # the only one which really gets
     # utf8 correct
     # - SL 
-    BEGIN { 
+    BEGIN {
         $ENV{JSON_ANY_ORDER}  = qw(XS);
-        $ENV{JSON_ANY_CONFIG} = "utf8=1";        
-    }           
+        $ENV{JSON_ANY_CONFIG} = "utf8=0,canonical=1";
+    }
+
     plan tests => 16;
     use_ok('MooseX::Storage');
 }