Convert from Module::Install to Dist::Zilla
[gitmo/MooseX-Types-Structured.git] / t / 07-coerce.t
index 7433acd..e24ebb7 100644 (file)
@@ -1,8 +1,8 @@
 BEGIN {
-       use strict;
-       use warnings;
-       use Test::More tests=>16;
-       use Test::Exception;
+    use strict;
+    use warnings;
+    use Test::More tests=>16;
+    use Test::Exception;
 }
 
 {
@@ -10,28 +10,28 @@ BEGIN {
 
     use Moose;
     use MooseX::Types::Structured qw(Dict Tuple);
-       use MooseX::Types::Moose qw(Int Str Object ArrayRef HashRef);
-       use MooseX::Types -declare => [qw(
+    use MooseX::Types::Moose qw(Int Str Object ArrayRef HashRef);
+    use MooseX::Types -declare => [qw(
         myDict myTuple Fullname
 
     )];
-    
+
     subtype myDict,
      as Dict[name=>Str, age=>Int];
-     
+
     subtype Fullname,
      as Dict[first=>Str, last=>Str];
-     
+
     coerce Fullname,
      from ArrayRef,
      via { +{first=>$_->[0], last=>$_->[1]} };
-     
+
     subtype myTuple,
      as Tuple[Str, Int];
 
     ## Create some coercions.  Note the dob_epoch could be a more useful convert
     ## from a dob datetime object, I'm just lazy.
-    
+
     coerce myDict,
      from Int,
      via { +{name=>'JohnDoe', age=>$_} },
@@ -71,12 +71,12 @@ is_deeply $person->stuff, {name=>"JohnDoe",age=>30}, 'Correct set';
 
 ok $person->stuff({aname=>{first=>"frank", last=>"herbert"},dob_in_years=>80}),
  '{{first=>"frank", last=>"herbert"},80}';
+
 is_deeply $person->stuff, {name=>"frank herbert",age=>80}, 'Correct set';
 
 ok $person->stuff({bname=>{first=>"frankbbb", last=>"herbert"},dob_in_years=>84}),
  '{{first=>"frankbbb", last=>"herbert"},84}';
+
 is_deeply $person->stuff, {name=>"frankbbb herbert",age=>84}, 'Correct set';
 
 ok $person->stuff(["mary",40]), 'Set Stuff ["mary",40]';
@@ -84,16 +84,16 @@ is_deeply $person->stuff, {name=>"mary",age=>40}, 'Correct set';
 
 ok $person->stuff({fullname=>{first=>"frank", last=>"herbert1"},dob_epoch=>85}),
  '{{first=>"frank", last=>"herbert1"},85}';
+
 is_deeply $person->stuff, {name=>"frank herbert1",age=>85}, 'Correct set';
 
 SKIP: {
     skip 'deep coercions not yet supported', 2, 1;
-    
+
     ok $person->stuff({fullname=>["frank", "herbert2"],dob_epoch=>86}),
      '{fullname=>["frank", "herbert2"],dob_epoch=>86}';
-    is_deeply $person->stuff, {name=>"frank herbert2",age=>86}, 'Correct set';   
+
+    is_deeply $person->stuff, {name=>"frank herbert2",age=>86}, 'Correct set';
 }