X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F012_method_exclusion_in_composition.t;h=fa74523763a975c1a9e64a53956af9ccc980913b;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=8c3456e514f3431a0405ff982d60fbddf61439da;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/030_roles/012_method_exclusion_in_composition.t b/t/030_roles/012_method_exclusion_in_composition.t index 8c3456e..fa74523 100644 --- a/t/030_roles/012_method_exclusion_in_composition.t +++ b/t/030_roles/012_method_exclusion_in_composition.t @@ -3,11 +3,10 @@ use strict; use warnings; -use Test::More tests => 19; +use Test::More; use Test::Exception; - { package My::Role; use Moose::Role; @@ -111,5 +110,4 @@ ok(!My::Foo::Role->meta->requires_method('foo'), '... and the &foo method is not ok(!My::Foo::Role::Other->meta->has_method('foo'), "we dont have a foo method"); ok(My::Foo::Role::Other->meta->requires_method('foo'), '... and the &foo method is required'); - - +done_testing;