Convert all tests to done_testing.
[gitmo/Moose.git] / t / 030_roles / 001_meta_role.t
index f8b377b..309f4b1 100644 (file)
@@ -3,16 +3,16 @@
 use strict;
 use warnings;
 
-use Test::More tests => 27;
+use Test::More;
 use Test::Exception;
 
 use Moose::Meta::Role;
 
 {
     package FooRole;
-    
+
     our $VERSION = '0.01';
-    
+
     sub foo { 'FooRole::foo' }
 }
 
@@ -34,7 +34,7 @@ is_deeply(
     [ $foo_role->get_method_list() ],
     [ 'foo' ],
     '... got the right method list');
-    
+
 # attributes ...
 
 is_deeply(
@@ -104,3 +104,5 @@ is_deeply(
     [ $foo_role->get_method_modifier_list('before') ],
     [ 'boo' ],
     '... got the right list of before method modifiers');
+
+done_testing;