Fix alias+conflict test to make things a little clearer topic/required-method-bug-fixes
Dave Rolsky [Fri, 30 Dec 2011 20:58:33 +0000 (14:58 -0600)]
t/roles/role_conflict_detection.t

index 7143596..508e8ee 100644 (file)
@@ -393,6 +393,7 @@ is(Role::Reality->meta->get_method('twist')->(),
     requires 'bar';
 
     sub foo {}
+    sub baz {}
 }
 
 {
@@ -449,9 +450,9 @@ is(Role::Reality->meta->get_method('twist')->(),
     sub bar {}
 
     ::is(
-        ::exception{ with 'AlsoHasFooMeth', { -alias => { bar => 'foo' } } },
+        ::exception{ with 'AlsoHasFooMeth', { -alias => { baz => 'foo' } } },
         undef,
-        'aliasing one of the conflicting methods as part of consuming the role supresses the conflict error'
+        'aliasing a method to the conflicting method suppresses the conflict error'
     );
 }