X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F050_metaclasses%2F021_export_with_prototype.t;h=6c8f5e25eb683b7961683c84947dbb690ea0b822;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=531f4c774bb6dc4ad558cac8e5b500b94d8ba642;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/050_metaclasses/021_export_with_prototype.t b/t/050_metaclasses/021_export_with_prototype.t index 531f4c7..6c8f5e2 100644 --- a/t/050_metaclasses/021_export_with_prototype.t +++ b/t/050_metaclasses/021_export_with_prototype.t @@ -2,7 +2,7 @@ use lib "t/lib"; package MyExporter::User; use MyExporter; -use Test::More (tests => 4); +use Test::More; use Test::Exception; lives_and { @@ -18,3 +18,5 @@ lives_and { is($caller, 'MyExporter', "As-is prototype code gets called from MyMooseX"); }; } "check function with prototype"; + +done_testing;