X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=t%2F020_attributes%2F007_attribute_custom_metaclass.t;fp=t%2F020_attributes%2F007_attribute_custom_metaclass.t;h=5cdf82e14b0f9c5433cf85a773f5a8dbf7326733;hp=00256f7ec4229d42d011267a4593c17301566bda;hb=79a725f4c2d2db0c16e8031f4689e30474e4f712;hpb=ab688693550bf12a9e9618948951d7e6bd317a75 diff --git a/t/020_attributes/007_attribute_custom_metaclass.t b/t/020_attributes/007_attribute_custom_metaclass.t index 00256f7..5cdf82e 100644 --- a/t/020_attributes/007_attribute_custom_metaclass.t +++ b/t/020_attributes/007_attribute_custom_metaclass.t @@ -57,7 +57,7 @@ use Test::Exception; use Mouse; ::lives_ok { - has 'bar' => (metaclass => 'Bar::Meta::Attribute'); + has 'bar' => (metaclass => 'Bar::Meta::Attribute', is => 'bare'); } '... the attribute metaclass need not be a Mouse::Meta::Attribute as long as it behaves'; }