X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F020_super_recursion.t;h=6ad2904aa52b30ee0ba15710c0c658fba42dc350;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=85d230c90c039544fdad1808d6c98825f7c0f361;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/100_bugs/020_super_recursion.t b/t/100_bugs/020_super_recursion.t index 85d230c..6ad2904 100644 --- a/t/100_bugs/020_super_recursion.t +++ b/t/100_bugs/020_super_recursion.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More tests => 3; +use Test::More; { package A; @@ -65,3 +65,5 @@ use Test::More tests => 3; is( C->new->foo, 'c' ); is( C->new->bar, 'cb' ); is( C->new->baz, 'cba' ); + +done_testing;