Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 030_roles / 041_empty_method_modifiers_meta_bug.t
index 2ebe86e..c6c5faa 100644 (file)
@@ -1,11 +1,8 @@
 #!/usr/bin/perl
-# This is automatically generated by author/import-moose-test.pl.
-# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
-use t::lib::MooseCompat;
 use strict;
 use warnings;
 
-use Test::More;
+use Test::More tests => 6;
 
 # test role and class
 package SomeRole;
@@ -29,5 +26,3 @@ 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;