X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F030_roles%2F004_role_composition_errors.t;h=b2c58f42e5ab221afe788b9c1e32ccb2be521f39;hb=06d16be025b59d5bb71c237c6ab27c6053c2b615;hp=ce8918fd8634b680f4a94d06a9bf9c5cc6597410;hpb=f3e76c8febfc574afaaabd20d06507ed1517086f;p=gitmo%2FMoose.git diff --git a/t/030_roles/004_role_composition_errors.t b/t/030_roles/004_role_composition_errors.t index ce8918f..b2c58f4 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;