Convert all tests to done_testing.
[gitmo/Moose.git] / t / 030_roles / 041_empty_method_modifiers_meta_bug.t
index aacbeb3..ae15abb 100644 (file)
@@ -1,9 +1,8 @@
 #!/usr/bin/perl
 use strict;
 use warnings;
-use English;
 
-use Test::More tests => 6;
+use Test::More;
 
 # test role and class
 package SomeRole;
@@ -27,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;