projects
/
gitmo/Role-Tiny.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
1fd9cd2
)
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
patch
|
blob
|
blame
|
history
t/role-duplication.t
patch
|
blob
|
blame
|
history
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
diff --git
a/t/role-duplication.t
b/t/role-duplication.t
index
4227777
..
124909d
100644
(file)
--- a/
t/role-duplication.t
+++ b/
t/role-duplication.t
@@
-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 }
}