From: Arthur Axel 'fREW' Schmidt Date: Sat, 5 Sep 2009 05:10:00 +0000 (-0500) Subject: don't skip ->can X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=67ba232f91903fe2291f3eda504bef95d6055cc2;p=gitmo%2FMoose.git don't skip ->can --- diff --git a/t/lib/MetaTest.pm b/t/lib/MetaTest.pm index 06db4da..9b41685 100644 --- a/t/lib/MetaTest.pm +++ b/t/lib/MetaTest.pm @@ -23,8 +23,8 @@ sub meta_can_ok { skip_meta { local $Test::Builder::Level = $Test::Builder::Level + 1; ok($class->meta->has_method($method), $message); - ok($class->can($method), $message); } 1; + ok($class->can($method), $message); } 1;