Make API docs look like other modules
[gitmo/Moose.git] / t / 020_attributes / 008_attribute_type_unions.t
index 95ce5f9..f2ad610 100644 (file)
@@ -3,15 +3,14 @@
 use strict;
 use warnings;
 
-use Test::More tests => 18;
+use Test::More;
 use Test::Exception;
 
 
-
 {
     package Foo;
     use Moose;
-    
+
     has 'bar' => (is => 'rw', isa => 'ArrayRef | HashRef');
 }
 
@@ -55,7 +54,7 @@ dies_ok {
 {
     package Bar;
     use Moose;
-    
+
     has 'baz' => (is => 'rw', isa => 'Str | CodeRef');
 }
 
@@ -96,4 +95,4 @@ dies_ok {
     Bar->new(baz => {})
 } '... didnt create a new Bar with baz as a HASH ref';
 
-
+done_testing;