projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7ca5c5f
)
Fix a test: package B conflicts the B module
gfx [Fri, 25 Sep 2009 11:08:50 +0000 (20:08 +0900)]
t/025-more-isa.t
patch
|
blob
|
blame
|
history
diff --git
a/t/025-more-isa.t
b/t/025-more-isa.t
index
3e18e96
..
3485956
100755
(executable)
--- a/
t/025-more-isa.t
+++ b/
t/025-more-isa.t
@@
-74,7
+74,7
@@
do {
package A;
our @VERSION;
- package B;
+ package Bx; # 'B' conflicts the B module
our $VERSION = 1;
package C;
@@
-105,7
+105,7
@@
do {
);
};
-for ('B', 'D'..'E', 'G::H') {
+for ('Bx', 'D'..'E', 'G::H') {
lives_ok {
ClassNameTests->new(class => $_);
};