Don't import Test::Exception into classes we are testing
Dave Rolsky [Thu, 28 Oct 2010 17:46:29 +0000 (12:46 -0500)]
t/030_roles/013_method_aliasing_in_composition.t

index 6487561..cbe8bf1 100644 (file)
@@ -170,9 +170,7 @@ ok(My::Foo::AliasOnly->meta->has_method('foo_foo'), '.. and the aliased foo_foo
     package Role::Bar;
     use Moose::Role;
 
-    use Test::Exception;
-
-    lives_ok {
+    ::lives_ok {
         with 'Role::Foo' => {
             -alias    => { x1 => 'foo_x1' },
             -excludes => ['y1'],
@@ -194,9 +192,7 @@ ok(My::Foo::AliasOnly->meta->has_method('foo_foo'), '.. and the aliased foo_foo
     package Role::Baz;
     use Moose::Role;
 
-    use Test::Exception;
-
-    lives_ok {
+    ::lives_ok {
         with 'Role::Foo' => {
             -alias    => { x1 => 'foo_x1' },
             -excludes => ['y1'],