finish role tc test
[gitmo/Moose.git] / lib / Moose / Meta / TypeConstraint / Role.pm
index c2bf664..d92e718 100644 (file)
@@ -19,7 +19,7 @@ __PACKAGE__->meta->add_attribute('role' => (
 sub new {
     my ( $class, %args ) = @_;
 
-    $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Object');
+    $args{parent} = Moose::Util::TypeConstraints::find_type_constraint('Role');
     my $self      = $class->meta->new_object(%args);
 
     $self->_create_hand_optimized_type_constraint;
@@ -76,7 +76,7 @@ sub is_subtype_of {
 
     if ( not ref $type_or_name_or_role ) {
         # it might be a role
-        return 1 if $self->role->does_role( $type_or_name_or_role );
+        return 1 if $self->role->meta->does_role( $type_or_name_or_role );
     }
 
     my $type = Moose::Util::TypeConstraints::find_type_constraint($type_or_name_or_role);
@@ -84,7 +84,7 @@ sub is_subtype_of {
     if ( $type->isa(__PACKAGE__) ) {
         # if $type_or_name_or_role isn't a role, it might be the TC name of another ::Role type
         # or it could also just be a type object in this branch
-        return $self->role->does_role( $type->role );
+        return $self->role->meta->does_role( $type->role );
     } else {
         # the only other thing we are a subtype of is Object
         $self->SUPER::is_subtype_of($type);