X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F020_attributes%2F005_attribute_does.t;h=a895bdb787ce6c43dcd37f44dbda6f4df335e8a5;hp=c61f82684aa221015852e9d3eeeaed002929872c;hb=410c35639fa6a9e13fbed562d087d09de375f5a0;hpb=4060c871da12ba3c5e88986ed121a8254f906bd6 diff --git a/t/020_attributes/005_attribute_does.t b/t/020_attributes/005_attribute_does.t index c61f826..a895bdb 100644 --- a/t/020_attributes/005_attribute_does.t +++ b/t/020_attributes/005_attribute_does.t @@ -19,7 +19,7 @@ use Test::Exception; has 'bar' => (is => 'rw', does => 'Bar::Role'); has 'baz' => ( is => 'rw', - does => role_type('Bar::Role') + does => 'Bar::Role' ); package Bar::Role;