Test::Deep is already required; use it instead of is_deeply
[gitmo/MooseX-Storage.git] / t / 007_false.t
index 147e498..8a91fd7 100644 (file)
@@ -4,6 +4,7 @@ use strict;
 use warnings;
 
 use Test::More tests => 8;
+use Test::Deep;
 
 BEGIN {
     use_ok('MooseX::Storage');
@@ -29,10 +30,10 @@ BEGIN {
         boolean => 0,
     );
     isa_ok( $foo, 'Foo' );
-
+    
     is($foo->boolean, 0, '... got the right boolean value');
-
-    is_deeply(
+    
+    cmp_deeply(
         $foo->pack,
         {
             __CLASS__ => 'Foo',
@@ -51,7 +52,7 @@ BEGIN {
             number    => 0,
             string    => '',
             boolean   => 0,
-        }
+        }        
     );
     isa_ok( $foo, 'Foo' );