moving MooseX::Storage
[gitmo/MooseX-Storage.git] / t / 001_basic.t
index e842107..2a4026c 100644 (file)
@@ -5,13 +5,17 @@ use warnings;
 
 use Test::More no_plan => 1;
 
+BEGIN {
+    use_ok('MooseX::Storage');
+}
+
 {
 
     package Foo;
     use Moose;
     use MooseX::Storage;
 
-    with Storage( 'format' => 'JSON' );
+    with Storage();
 
     has 'number' => ( is => 'ro', isa => 'Int' );
     has 'string' => ( is => 'ro', isa => 'Str' );
@@ -21,10 +25,7 @@ use Test::More no_plan => 1;
     has 'object' => ( is => 'ro', isa => 'Object' );
 }
 
-SKIP: {
-    eval { require Test::JSON };
-    skip "HTML::Lint not installed", 3 if $@;
-    Test::JSON->import();
+{
     my $foo = Foo->new(
         number => 10,
         string => 'foo',
@@ -34,18 +35,39 @@ SKIP: {
         object => Foo->new( number => 2 ),
     );
     isa_ok( $foo, 'Foo' );
-    my $json = $foo->freeze;
-    is_valid_json($json);
-    is_json(
-        $json,
-        '{"array":[1,2,3,4,5,6,7,8,9,10],"hash":{"6":null,"3":null,"7":null,"9":null,"2":null,"8":null,"1":null,"4":null,"10":null,"5":null},"float":10.5,"object":{"number":2,"__class__":"Foo"},"number":10,"__class__":"Foo","string":"foo"}',
-        '... got the right JSON'
+    
+    is_deeply(
+        $foo->pack,
+        {
+            __class__ => 'Foo',
+            number    => 10,
+            string    => 'foo',
+            float     => 10.5,
+            array     => [ 1 .. 10 ],
+            hash      => { map { $_ => undef } ( 1 .. 10 ) },
+            object    => { 
+                            __class__ => 'Foo',                
+                            number    => 2 
+                         },            
+        },
+        '... got the right frozen class'
     );
 }
 
 {
-    my $foo = Foo->thaw(
-        '{"array":[1,2,3,4,5,6,7,8,9,10],"hash":{"6":null,"3":null,"7":null,"9":null,"2":null,"8":null,"1":null,"4":null,"10":null,"5":null},"float":10.5,"object":{"number":2,"__class__":"Foo"},"number":10,"__class__":"Foo","string":"foo"}'
+    my $foo = Foo->unpack(
+        {
+            __class__ => 'Foo',
+            number    => 10,
+            string    => 'foo',
+            float     => 10.5,
+            array     => [ 1 .. 10 ],
+            hash      => { map { $_ => undef } ( 1 .. 10 ) },
+            object    => { 
+                            __class__ => 'Foo',                
+                            number    => 2 
+                         },            
+        }        
     );
     isa_ok( $foo, 'Foo' );
 
@@ -63,4 +85,3 @@ SKIP: {
     is( $foo->object->number, 2,
         '... got the right number (in the embedded object)' );
 }
-