X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F021_DEMOLISHALL_shortcutted.t;h=7282c122acd7af7a2b4454caef2d12d1f4f0ab12;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=531ae09c1c85068150f5a0bcf559c9e75aa69a19;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/100_bugs/021_DEMOLISHALL_shortcutted.t b/t/100_bugs/021_DEMOLISHALL_shortcutted.t index 531ae09..7282c12 100644 --- a/t/100_bugs/021_DEMOLISHALL_shortcutted.t +++ b/t/100_bugs/021_DEMOLISHALL_shortcutted.t @@ -19,7 +19,7 @@ sub DEMOLISH {}; package main; -use Test::More tests => 2; +use Test::More; my $m = DemolishAll::WithDemolish->new; undef $m; @@ -29,4 +29,4 @@ $m = DemolishAll::WithoutDemolish->new; undef $m; is ( $Role::DemolishAll::ok, 1, 'DemolishAll wo/ explicit DEMOLISH sub' ); -1; +done_testing;