X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F026_create_anon_recursion.t;h=c1f9159e7f95c988fc79a12a372c84bfbaeff48a;hb=9864f0e4ba233c5f30ad6dc7c484ced43d883d27;hp=c5f4562de54364503e3cc16e09620eebff7f0261;hpb=8845df4dd6432e3164d078ade741409061adae9f;p=gitmo%2FMouse.git diff --git a/t/100_bugs/026_create_anon_recursion.t b/t/100_bugs/026_create_anon_recursion.t index c5f4562..c1f9159 100644 --- a/t/100_bugs/026_create_anon_recursion.t +++ b/t/100_bugs/026_create_anon_recursion.t @@ -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;