Move non-useful, Moose-specific methods into t/lib/Test/Mouse.pm
[gitmo/Mouse.git] / t / 403-method-modifiers.t
index 141534b..67b0d6f 100644 (file)
@@ -1,16 +1,8 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More;
-BEGIN {
-    if (eval "require Class::Method::Modifiers; 1") {
-        plan tests => 4;
-    }
-    else {
-        plan skip_all => "Class::Method::Modifiers required for this test";
-    }
-}
-use Mouse::Util ':test';
+use Test::More tests => 4;
+use Test::Exception;
 
 my @calls;
 my ($before, $after, $around);