From: Stevan Little Date: Thu, 13 Apr 2006 20:56:04 +0000 (+0000) Subject: error_tests X-Git-Tag: 0_05~34 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=581674fc8e5ce2a3aa510ed8106fb0a1d501c2cb;p=gitmo%2FMoose.git error_tests --- diff --git a/t/043_role_composition_errors.t b/t/043_role_composition_errors.t index 09569f9..1514a38 100644 --- a/t/043_role_composition_errors.t +++ b/t/043_role_composition_errors.t @@ -60,6 +60,6 @@ BEGIN { use warnings; use Moose; - ::dies_ok { with('Foo::Role') } '... no foo method implemented by Baz::Role'; + ::lives_ok { with('Foo::Role') } '... no foo method implemented by Baz::Role'; }