X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F08-const-sub.t;h=091052b3d1cc2cbac3cb7ec47e264ae46c5b8675;hb=39bc2d6e65e2e1898be6219299f2e8a09e7a7b1c;hp=ec0d861430bc49b914619021d186ee38bbb08a51;hpb=03073cbe7cf94068a5ee4cebec2472d7cb137169;p=p5sagit%2Fnamespace-clean.git diff --git a/t/08-const-sub.t b/t/08-const-sub.t index ec0d861..091052b 100644 --- a/t/08-const-sub.t +++ b/t/08-const-sub.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More 0.88; +use Test::More tests => 2; use constant CONST => 123; use namespace::clean; @@ -10,5 +10,3 @@ my $x = CONST; is $x, 123; ok eval("!defined(&CONST)"); - -done_testing;