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=a28e50e44945358d15eb19e4688573741a319fe0;hp=09757655d41a31121501f756a6068ab823be08a9;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;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;