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;h=702cd6203f088a460ceaad1b7fc72ddb6ecfa4b0;hp=1d3c9776b3b358a72bbac0503babf8eb77f2d406;hb=410c35639fa6a9e13fbed562d087d09de375f5a0;hpb=4060c871da12ba3c5e88986ed121a8254f906bd6 diff --git a/t/020_attributes/007_attribute_custom_metaclass.t b/t/020_attributes/007_attribute_custom_metaclass.t index 1d3c977..702cd62 100644 --- a/t/020_attributes/007_attribute_custom_metaclass.t +++ b/t/020_attributes/007_attribute_custom_metaclass.t @@ -44,7 +44,6 @@ use Test::Exception; is($foo_attr_type_constraint->name, 'Foo', '... got the right type constraint name'); - local $TODO = '$type_constraint->parent is not reliable'; is($foo_attr_type_constraint->parent, 'Object', '... got the right type constraint parent name'); } { @@ -52,7 +51,7 @@ use Test::Exception; use Mouse; #extends 'Class::MOP::Attribute'; - extends 'Mouse::Meta::Attribute'; + extends 'Foo::Meta::Attribute'; package Bar; use Mouse;