remove trailing whitespace
[gitmo/Moose.git] / t / 020_attributes / 008_attribute_type_unions.t
index 05b94eb..86dfbcf 100644 (file)
@@ -3,17 +3,15 @@
 use strict;
 use warnings;
 
-use Test::More tests => 19;
+use Test::More tests => 18;
 use Test::Exception;
 
-BEGIN {
-    use_ok('Moose');           
-}
+
 
 {
     package Foo;
     use Moose;
-    
+
     has 'bar' => (is => 'rw', isa => 'ArrayRef | HashRef');
 }
 
@@ -57,7 +55,7 @@ dies_ok {
 {
     package Bar;
     use Moose;
-    
+
     has 'baz' => (is => 'rw', isa => 'Str | CodeRef');
 }