X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F060_basic_deferred.t;h=451bfd98710a4668b7af29e39abe330f42aa0622;hb=94574eb5dab74ed3cdd6f8da700ff4b25047c913;hp=9be9b3a3db860beeb3b90904d40c7c8abe756579;hpb=4fa64e865c99a6dcc3bec159a662300151d62fdf;p=gitmo%2FMooseX-Storage.git diff --git a/t/060_basic_deferred.t b/t/060_basic_deferred.t index 9be9b3a..451bfd9 100644 --- a/t/060_basic_deferred.t +++ b/t/060_basic_deferred.t @@ -12,7 +12,7 @@ BEGIN { plan skip_all => "Test::JSON and Test::YAML::Valid are required for this test" if $@; eval "use JSON::Any"; plan skip_all => "JSON::Any is required for this test" if $@; - plan tests => 33; + plan tests => 32; use_ok('MooseX::Storage'); } @@ -155,42 +155,6 @@ BEGIN { yaml_string_ok( $yaml, '... we got valid YAML out of it' ); - is( - $yaml, - q{--- -__CLASS__: Foo -array: - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 -float: 10.5 -hash: - 1: ~ - 10: ~ - 2: ~ - 3: ~ - 4: ~ - 5: ~ - 6: ~ - 7: ~ - 8: ~ - 9: ~ -number: 10 -object: - __CLASS__: Foo - number: 2 -string: foo -}, - '... got the same YAML' - ); - } {