X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F007_false.t;h=8a91fd7cc9fcb2d14bd77eae4fe6e66952e5138c;hb=619ab942be0a8bd8f530c57ca5b0c8d833cdc89b;hp=147e4983f726a6933dcb1bb1d51ac692ef71289d;hpb=766ab81f59db9f3087e0011112ff2e69133a85c5;p=gitmo%2FMooseX-Storage.git diff --git a/t/007_false.t b/t/007_false.t index 147e498..8a91fd7 100644 --- a/t/007_false.t +++ b/t/007_false.t @@ -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' );