Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / 100_bugs / 026_create_anon_recursion.t
index c1f9159..33ebf27 100644 (file)
@@ -1,18 +1,15 @@
 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;
 
-$SIG{__WARN__} = sub { die if shift =~ /recurs/ };
-
-TODO:
 {
-#    local $TODO
-#        = 'Loading Mouse::Meta::Class without loading Mouse.pm causes weird problems';
-
     my $meta;
     lives_ok {
         $meta = Mouse::Meta::Class->create_anon_class(
@@ -21,3 +18,5 @@ TODO:
     }
     'Class is created successfully';
 }
+
+done_testing;