Revert "Whitespace trim tests", this was clearly retarded of
[gitmo/MooseX-Storage.git] / t / 101_io_atomic.t
index 43cb6fb..55373a5 100644 (file)
@@ -10,9 +10,9 @@ my $dir = tempdir( CLEANUP => 1 );
 
 BEGIN {
     eval "use IO::AtomicFile";
-    plan skip_all => "IO::AtomicFile is required for this test" if $@;
+    plan skip_all => "IO::AtomicFile is required for this test" if $@;      
     eval "use JSON::Any";
-    plan skip_all => "JSON::Any is required for this test" if $@;
+    plan skip_all => "JSON::Any is required for this test" if $@;      
     plan tests => 10;
     use_ok('MooseX::Storage');
 }
@@ -21,15 +21,15 @@ BEGIN {
     package Foo;
     use Moose;
     use MooseX::Storage;
-
+    
     with Storage(format => 'JSON', io => 'AtomicFile');
-
+    
     has 'number' => (is => 'ro', isa => 'Int');
     has 'string' => (is => 'ro', 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');
+    has 'hash'   => (is => 'ro', isa => 'HashRef');    
+       has 'object' => (is => 'ro', isa => 'Object');    
 }
 
 my $file = catfile($dir,'temp.json');