alter duplication test to not provoke Class::Method::Modifiers loading
Matt S Trout [Sat, 5 May 2012 19:30:32 +0000 (19:30 +0000)]
Changes
t/role-duplication.t

diff --git a/Changes b/Changes
index 2712f14..6065c12 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+  - alter duplication test to not provoke Class::Method::Modifiers loading
+
 1.001001 - 2012-04-27
   - remove strictures from one last test file
 
index 4227777..124909d 100644 (file)
@@ -4,7 +4,7 @@ use Test::More;
 
 {
   package Role; use Role::Tiny;
-  around foo => sub { my $orig = shift; 1 + $orig->(@_) };
+  sub foo { my $orig = shift; 1 + $orig->(@_) };
   package Base; sub foo { 1 }
 }