X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F016_inheriting_from_roles.t;h=c001dbb3b1d564d06a99247e9220dec5a1c0ebd4;hb=a28e50e44945358d15eb19e4688573741a319fe0;hp=aa6a86baa26b89ff253303dc45d0c51ff448cce2;hpb=1b806c9945d6c57dca3805ae7924571df08aec03;p=gitmo%2FMoose.git diff --git a/t/100_bugs/016_inheriting_from_roles.t b/t/100_bugs/016_inheriting_from_roles.t index aa6a86b..c001dbb 100644 --- a/t/100_bugs/016_inheriting_from_roles.t +++ b/t/100_bugs/016_inheriting_from_roles.t @@ -3,11 +3,10 @@ use strict; use warnings; -use Test::More tests => 1; +use Test::More; use Test::Exception; - { package My::Role; use Moose::Role; @@ -21,3 +20,5 @@ use Test::Exception; } qr/You cannot inherit from a Moose Role \(My\:\:Role\)/, '... this croaks correctly'; } + +done_testing;