[Moose-commits] r7748 - Moose/trunk/t/020_attributes

autarch at code2.0beta.co.uk autarch at code2.0beta.co.uk
Fri Feb 20 17:30:32 GMT 2009


Author: autarch
Date: 2009-02-20 09:30:32 -0800 (Fri, 20 Feb 2009)
New Revision: 7748

Modified:
   Moose/trunk/t/020_attributes/020_trigger_and_coerce.t
Log:
Perltidy this test file


Modified: Moose/trunk/t/020_attributes/020_trigger_and_coerce.t
===================================================================
--- Moose/trunk/t/020_attributes/020_trigger_and_coerce.t	2009-02-20 17:30:11 UTC (rev 7747)
+++ Moose/trunk/t/020_attributes/020_trigger_and_coerce.t	2009-02-20 17:30:32 UTC (rev 7748)
@@ -8,49 +8,49 @@
 
 
 
-{   
+{
+
     package Fake::DateTime;
     use Moose;
-    
-    has 'string_repr' => (is => 'ro');
-    
+
+    has 'string_repr' => ( is => 'ro' );
+
     package Mortgage;
     use Moose;
     use Moose::Util::TypeConstraints;
 
-    coerce 'Fake::DateTime'
-        => from 'Str' 
-            => via { Fake::DateTime->new(string_repr => $_) };
+    coerce 'Fake::DateTime' => from 'Str' =>
+        via { Fake::DateTime->new( string_repr => $_ ) };
 
     has 'closing_date' => (
-      is      => 'rw',
-      isa     => 'Fake::DateTime',
-      coerce  => 1,
-      trigger => sub {
-        my ( $self, $val ) = @_;
-        ::pass('... trigger is being called');
-        ::isa_ok($self->closing_date, 'Fake::DateTime');
-        ::isa_ok($val, 'Fake::DateTime');
-      }
+        is      => 'rw',
+        isa     => 'Fake::DateTime',
+        coerce  => 1,
+        trigger => sub {
+            my ( $self, $val ) = @_;
+            ::pass('... trigger is being called');
+            ::isa_ok( $self->closing_date, 'Fake::DateTime' );
+            ::isa_ok( $val,                'Fake::DateTime' );
+        }
     );
 }
 
 {
     my $mtg = Mortgage->new( closing_date => 'yesterday' );
-    isa_ok($mtg, 'Mortgage');
+    isa_ok( $mtg, 'Mortgage' );
 
     # check that coercion worked
-    isa_ok($mtg->closing_date, 'Fake::DateTime');
+    isa_ok( $mtg->closing_date, 'Fake::DateTime' );
 }
 
 Mortgage->meta->make_immutable;
-ok(Mortgage->meta->is_immutable, '... Mortgage is now immutable');
+ok( Mortgage->meta->is_immutable, '... Mortgage is now immutable' );
 
 {
     my $mtg = Mortgage->new( closing_date => 'yesterday' );
-    isa_ok($mtg, 'Mortgage');
+    isa_ok( $mtg, 'Mortgage' );
 
     # check that coercion worked
-    isa_ok($mtg->closing_date, 'Fake::DateTime');
+    isa_ok( $mtg->closing_date, 'Fake::DateTime' );
 }
 




More information about the Moose-commits mailing list