From: Fuji, Goro Date: Sat, 25 Sep 2010 10:34:57 +0000 (+0900) Subject: Fix a test X-Git-Tag: 0.72~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=79a725f4c2d2db0c16e8031f4689e30474e4f712 Fix a test --- 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'; }