Convert all tests to done_testing.
[gitmo/Moose.git] / t / 030_roles / 041_empty_method_modifiers_meta_bug.t
index e7a0f9f..ae15abb 100644 (file)
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 6;
+use Test::More;
 
 # test role and class
 package SomeRole;
@@ -26,3 +26,5 @@ for my $modifier_type (qw[ before around after ]) {
     is($@, '', "$get_func for no method mods does not die");
     is(scalar(@mms),0,'is an empty list');
 }
+
+done_testing;