Factor out some bits of get_method_list so I can write
[gitmo/Mouse.git] / t / 500_moose_extends_mouse.t
index 25f29c5..cb99d00 100644 (file)
@@ -3,8 +3,14 @@
 use strict;
 use warnings;
 
-use Test::More 'no_plan';
-use Mouse::Util ':test';
+use Test::More;
+use Test::Exception;
+BEGIN {
+    plan skip_all => "Moose required for this test" unless eval { require Moose  && Moose->VERSION('0.59') };
+    plan tests => 27;
+}
+
+use Test::Exception;
 
 {
     package Foo;