X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F030_roles%2F004_role_composition_errors.t;h=8a9b04c58f79688fc570eade1755b5a9bd7aaa8e;hp=837af9fac0e20ddbfad6de8256be10c8eef674fe;hb=6475f69defb20a02b6559bddf870a0821f28ac20;hpb=6d5a627396f91b2dce25a7b6e5c5dbe6b67f2d95 diff --git a/t/030_roles/004_role_composition_errors.t b/t/030_roles/004_role_composition_errors.t index 837af9f..8a9b04c 100644 --- a/t/030_roles/004_role_composition_errors.t +++ b/t/030_roles/004_role_composition_errors.t @@ -3,11 +3,10 @@ use strict; use warnings; -use Test::More tests => 14; +use Test::More; use Test::Exception; - { package Foo::Role; @@ -155,3 +154,5 @@ is_deeply( qr/'Quux::Role' requires the methods 'meth3' and 'meth4' to be implemented by 'Quux::Class4'/, 'exception mentions all the require methods that are accessors at once, as well as missing methods, but not the one that exists'; } + +done_testing;