Reorganize t/400_mouse_util
[gitmo/Mouse.git] / t / 400_mouse_util / 002_moose_util_does_role.t
similarity index 83%
rename from t/400_mouse_util/002_mouse_util_does_role.t
rename to t/400_mouse_util/002_moose_util_does_role.t
index ac2c304..4851e6a 100644 (file)
@@ -1,9 +1,12 @@
 #!/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 tests => 8;
+use Test::More;
 
 BEGIN {
     use_ok('Mouse::Util', ':all');
@@ -32,7 +35,7 @@ BEGIN {
 {
   package Quux;
 
-  #use metaclass;
+  use metaclass;
 }
 
 {
@@ -79,3 +82,4 @@ ok(!does_role('Quux', 'Foo'), '... Quux doesnt do Foo (does not die tho)');
 
 #ok(does_role('Foo::Foo', 'Foo'), '... Foo::Foo does do Foo');
 
+done_testing;