Merged topic/metarole-distinguishes-role-meta (which includes topic/roles-have-real...
[gitmo/Moose.git] / t / 600_todo_tests / 002_various_role_features.t
index deab7fe..8b6bccc 100644 (file)
@@ -192,11 +192,7 @@ my $gorch = Gorch->meta;
 isa_ok( $gorch, "Moose::Meta::Role" );
 
 ok( $gorch->has_attribute("attr"), "has attribute 'attr'" );
-
-{
-    local $TODO = "role attribute isn't a meta attribute yet";
-    isa_ok( $gorch->get_attribute("attr"), "Moose::Meta::Attribute" );
-}
+isa_ok( $gorch->get_attribute("attr"), "Moose::Meta::Role::Attribute" );
 
 req_or_has($gorch, "gorch_method");
 ok( $gorch->has_method("gorch_method"), "has_method gorch_method" );
@@ -226,11 +222,7 @@ my $robot = Dancer::Robot->meta;
 isa_ok( $robot, "Moose::Meta::Role" );
 
 ok( $robot->has_attribute("twist"), "has attr 'twist'" );
-
-{
-    local $TODO = "role attribute isn't a meta attribute yet";
-    isa_ok( $robot->get_attribute("twist"), "Moose::Meta::Attribute" );
-}
+isa_ok( $robot->get_attribute("twist"), "Moose::Meta::Role::Attribute" );
 
 {
     req_or_has($robot, "twist");