X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F020_attributes%2F005_attribute_does.t;h=a895bdb787ce6c43dcd37f44dbda6f4df335e8a5;hb=6475f69defb20a02b6559bddf870a0821f28ac20;hp=c61f82684aa221015852e9d3eeeaed002929872c;hpb=4060c871da12ba3c5e88986ed121a8254f906bd6;p=gitmo%2FMouse.git 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;