From: Shawn M Moore Date: Mon, 22 Dec 2008 03:53:58 +0000 (+0000) Subject: Don't do the use_ok test X-Git-Tag: 0.19~83 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7af701163148f7c6f277796b309313b6c448ff54;hp=a5fc1e9ae701943f0fd4bd9ba81a9a6eab523d0b;p=gitmo%2FMouse.git Don't do the use_ok test --- diff --git a/t/000-recipes/001_point.t b/t/000-recipes/001_point.t index 23d5e8f..3a8bd33 100644 --- a/t/000-recipes/001_point.t +++ b/t/000-recipes/001_point.t @@ -6,7 +6,7 @@ use warnings; use Test::More; BEGIN { if (eval "require Class::Method::Modifiers; 1") { - plan tests => 58; + plan tests => 57; } else { plan skip_all => "Class::Method::Modifiers required for this test"; @@ -16,10 +16,6 @@ BEGIN { use Mouse::Util; use Test::Exception; -BEGIN { - use_ok('Mouse'); -} - { package Point; use Mouse;