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