Revert autogenerated tests. Tests should not changed radically.
[gitmo/Mouse.git] / t / 100_bugs / 026_create_anon_recursion.t
index c5f4562..c1f9159 100644 (file)
@@ -1,10 +1,7 @@
 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;
+use Test::More tests => 1;
 use Test::Exception;
 
 use Mouse::Meta::Class;
@@ -13,8 +10,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 {
@@ -24,5 +21,3 @@ TODO:
     }
     'Class is created successfully';
 }
-
-done_testing;