X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F100_bugs%2F016_inheriting_from_roles.t;h=ecf41259ea3c12f407193a10773d0733fd9b7046;hb=refs%2Fheads%2Fabandoned%2Fdeath_to_all_ellipses;hp=2fa0357130c3b1af8e4a21cdbb96ebc4a5dcb45e;hpb=7ff5653479c2bfc0794635f7fbade9bfe7bb2381;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 2fa0357..ecf4125 100644 --- a/t/100_bugs/016_inheriting_from_roles.t +++ b/t/100_bugs/016_inheriting_from_roles.t @@ -15,9 +15,9 @@ use Test::Exception; { package My::Class; use Moose; - + ::throws_ok { extends 'My::Role'; - } qr/You cannot inherit from a Moose Role \(My\:\:Role\)/, - '... this croaks correctly'; + } qr/You cannot inherit from a Moose Role \(My\:\:Role\)/, + 'this croaks correctly'; }