X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F020_attributes%2F006_attribute_required.t;h=5df07cc067e7696bc0a69fa0f4dd2a231f707561;hb=ad3882b59692e4e4eab99f9b183c941e6f63d3bd;hp=09757655d41a31121501f756a6068ab823be08a9;hpb=7ff5653479c2bfc0794635f7fbade9bfe7bb2381;p=gitmo%2FMoose.git diff --git a/t/020_attributes/006_attribute_required.t b/t/020_attributes/006_attribute_required.t index 0975765..5df07cc 100644 --- a/t/020_attributes/006_attribute_required.t +++ b/t/020_attributes/006_attribute_required.t @@ -3,11 +3,10 @@ use strict; use warnings; -use Test::More tests => 15; +use Test::More; use Test::Exception; - { package Foo; use Moose; @@ -66,3 +65,4 @@ throws_ok { Foo->new; } qr/^Attribute \(bar\) is required/, '... must supply all the required attribute'; +done_testing;