X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F013_method_aliasing_in_composition.t;h=6487561622c6a96b7e2dca294fa09b4a197de2b6;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=3f518ee11b898f7e6931c047b416d44ebc97c7da;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/030_roles/013_method_aliasing_in_composition.t b/t/030_roles/013_method_aliasing_in_composition.t index 3f518ee..6487561 100644 --- a/t/030_roles/013_method_aliasing_in_composition.t +++ b/t/030_roles/013_method_aliasing_in_composition.t @@ -3,11 +3,10 @@ use strict; use warnings; -use Test::More tests => 46; +use Test::More; use Test::Exception; - { package My::Role; use Moose::Role; @@ -212,3 +211,5 @@ ok(My::Foo::AliasOnly->meta->has_method('foo_foo'), '.. and the aliased foo_foo for qw( x1 foo_x1 ); ok( ! $baz->has_method('y1'), 'Role::Baz has no y1 method' ); } + +done_testing;