fix hash order randomization issue: use canonical mode with JSON (RT#84287)
[gitmo/MooseX-Storage.git] / t / 010_basic_json.t
index 05d64f5..7f405e8 100644 (file)
@@ -5,11 +5,12 @@ use warnings;
 
 use Test::More;
 
+use Test::Requires {
+    'Test::JSON' => 0.01, # skip all if not installed
+    'JSON::Any' => 0.01,
+};
+
 BEGIN {
-    eval "use Test::JSON";
-    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');
 }