projects
/
gitmo/Class-MOP.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e45a388
)
Rename the test class from "Base" because case insensitive file systems try to subcla...
Shawn M Moore [Sun, 7 Dec 2008 02:03:21 +0000 (
02:03
+0000)]
t/305_RT_41255.t
patch
|
blob
|
blame
|
history
diff --git
a/t/305_RT_41255.t
b/t/305_RT_41255.t
index
676a27d
..
3431127
100644
(file)
--- a/
t/305_RT_41255.t
+++ b/
t/305_RT_41255.t
@@
-7,7
+7,7
@@
use Test::Exception;
use Class::MOP;
{
- package Base;
+ package BaseClass;
sub m1 { 1 }
sub m2 { 2 }
sub m3 { 3 }
@@
-15,7
+15,7
@@
use Class::MOP;
sub m5 { 5 }
package Derived;
- use base qw(Base);
+ use base qw(BaseClass);
sub m1;
sub m2 ();