Revert "Moose now warns about class implicitly overriding methods from local"
[gitmo/Moose.git] / t / 030_roles / 005_role_conflict_detection.t
index a9e4f87..b99b90f 100644 (file)
@@ -3,9 +3,8 @@
 use strict;
 use warnings;
 
-use Test::More tests => 89;
+use Test::More tests => 87; # it's really 124 with kolibrie's tests;
 use Test::Exception;
-use Test::Output;
 
 =pod
 
@@ -108,11 +107,7 @@ Role method conflicts
     
     ::lives_ok {
         with 'Role::Bling';
-
-        ::stderr_like {
-            with 'Role::Bling::Bling';
-        } qr/The My::Test4 class has implicitly overridden the method \(bling\) from role Role::Bling::Bling\./;
-
+        with 'Role::Bling::Bling';
     } '... role methods didnt conflict when manually combined';    
     
     package My::Test5;
@@ -120,10 +115,7 @@ Role method conflicts
     
     ::lives_ok {
         with 'Role::Bling::Bling';
-
-        ::stderr_like {
-            with 'Role::Bling';
-        } qr/The My::Test5 class has implicitly overridden the method \(bling\) from role Role::Bling\./;
+        with 'Role::Bling';
     } '... role methods didnt conflict when manually combined (in opposite order)';    
     
     package My::Test6;