X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Storage.git;a=blobdiff_plain;f=t%2F050_basic_storable.t;h=1ae7a2aa5c9ed65c4eaa8ceea3dbd3a9956cfb0a;hp=7c98748d3bc59175f93ddb005f5ed78e985df10c;hb=766ab81f59db9f3087e0011112ff2e69133a85c5;hpb=11d44bb52ca8164d34774985af7b550cfd0c60a0 diff --git a/t/050_basic_storable.t b/t/050_basic_storable.t index 7c98748..1ae7a2a 100644 --- a/t/050_basic_storable.t +++ b/t/050_basic_storable.t @@ -36,7 +36,7 @@ BEGIN { object => Foo->new( number => 2 ), ); isa_ok( $foo, 'Foo' ); - + my $stored = $foo->freeze; my $struct = Storable::thaw($stored); @@ -46,9 +46,9 @@ BEGIN { '__CLASS__' => 'Foo', 'float' => 10.5, 'number' => 10, - 'string' => 'foo', + 'string' => 'foo', 'array' => [ 1 .. 10], - 'hash' => { map { $_ => undef } 1 .. 10 }, + 'hash' => { map { $_ => undef } 1 .. 10 }, 'object' => { '__CLASS__' => 'Foo', 'number' => 2 @@ -63,15 +63,15 @@ BEGIN { '__CLASS__' => 'Foo', 'float' => 10.5, 'number' => 10, - 'string' => 'foo', + 'string' => 'foo', 'array' => [ 1 .. 10], - 'hash' => { map { $_ => undef } 1 .. 10 }, + 'hash' => { map { $_ => undef } 1 .. 10 }, 'object' => { '__CLASS__' => 'Foo', 'number' => 2 }, }); - + my $foo = Foo->thaw($stored); isa_ok( $foo, 'Foo' );