fix whitespace to make "dzil authordeps --missing" happy (see dist-zilla issue#196)
[gitmo/MooseX-Storage.git] / t / 103_io_storable_file_custom.t
index f87148b..ed991d4 100644 (file)
@@ -16,18 +16,18 @@ BEGIN {
     package Foo;
     use Moose;
     use MooseX::Storage;
-    
+
     with Storage(io => 'StorableFile');
-    
+
     has 'number' => (is => 'ro', isa => 'Int');
     has 'string' => (is => 'rw', isa => 'Str');
-    has 'float'  => (is => 'ro', isa => 'Num');        
+    has 'float'  => (is => 'ro', isa => 'Num');
     has 'array'  => (is => 'ro', isa => 'ArrayRef');
-    has 'hash'   => (is => 'ro', isa => 'HashRef');    
-       has 'object' => (is => 'ro', isa => 'Object');    
-       
-       ## add some custom freeze/thaw hooks here ...
-       
+    has 'hash'   => (is => 'ro', isa => 'HashRef');
+    has 'object' => (is => 'ro', isa => 'Object');
+
+    ## add some custom freeze/thaw hooks here ...
+
     sub thaw {
         my ( $class, $data ) = @_;
         my $self = $class->unpack( $data );
@@ -53,12 +53,12 @@ my $file = catfile($dir,'temp.storable');
         float  => 10.5,
         array  => [ 1 .. 10 ],
         hash   => { map { $_ => undef } (1 .. 10) },
-       object => Foo->new( number => 2 ),
+        object => Foo->new( number => 2 ),
     );
     isa_ok($foo, 'Foo');
 
     $foo->store($file);
-    
+
     # check our custom freeze hook fired ...
     my $data = Storable::retrieve($file);
     cmp_deeply(
@@ -67,17 +67,17 @@ my $file = catfile($dir,'temp.storable');
             '__CLASS__' => 'Foo',
             'float'     => 10.5,
             'number'    => 10,
-            'string'    => 'HELLO WORLD',           
+            'string'    => 'HELLO WORLD',
             'array'     => [ 1 .. 10],
-            'hash'      => { map { $_ => undef } 1 .. 10 },            
+            'hash'      => { map { $_ => undef } 1 .. 10 },
             'object'    => {
                 '__CLASS__' => 'Foo',
                 'number' => 2
             },
         },
         '... got the data struct we expected'
-    );    
-    
+    );
+
 }
 
 {