X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F010_basics%2F017_error_handling.t;h=542c79c17f7848b4e1da870e819aec35499f41a9;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=958c6d3128b236d15b6b770e267ca83c136b64b3;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/010_basics/017_error_handling.t b/t/010_basics/017_error_handling.t index 958c6d3..542c79c 100644 --- a/t/010_basics/017_error_handling.t +++ b/t/010_basics/017_error_handling.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 3; +use Test::More; use Test::Exception; # This tests the error handling in Moose::Object only @@ -20,3 +20,5 @@ throws_ok { Foo->new(undef) } qr/^\QSingle parameters to new() must be a HASH re throws_ok { Foo->does() } qr/^\QYou must supply a role name to does()/, 'Cannot call does() without a role name'; + +done_testing;