Reorganize t/100_bugs/
[gitmo/Mouse.git] / t / 100_bugs / 026_create_anon_recursion.t
index c1f9159..c5f4562 100644 (file)
@@ -1,7 +1,10 @@
 use strict;
+# 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 warnings;
 
-use Test::More tests => 1;
+use Test::More;
 use Test::Exception;
 
 use Mouse::Meta::Class;
@@ -10,8 +13,8 @@ $SIG{__WARN__} = sub { die if shift =~ /recurs/ };
 
 TODO:
 {
-#    local $TODO
-#        = 'Loading Mouse::Meta::Class without loading Mouse.pm causes weird problems';
+    local $TODO
+        = 'Loading Mouse::Meta::Class without loading Mouse.pm causes weird problems';
 
     my $meta;
     lives_ok {
@@ -21,3 +24,5 @@ TODO:
     }
     'Class is created successfully';
 }
+
+done_testing;