projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
2230a6a
)
Whoops, was loading Moose instead of Mouse..
Shawn M Moore [Wed, 11 Jun 2008 05:20:12 +0000 (
05:20
+0000)]
t/014-build.t
patch
|
blob
|
blame
|
history
diff --git
a/t/014-build.t
b/t/014-build.t
index
6c10857
..
0d95047
100644
(file)
--- a/
t/014-build.t
+++ b/
t/014-build.t
@@
-7,7
+7,7
@@
my @called;
do {
package Class;
- use Moose;
+ use Mouse;
sub BUILD {
push @called, 'Class::BUILD';
@@
-20,7
+20,7
@@
do {
}
package Child;
- use Moose;
+ use Mouse;
extends 'Class';
sub BUILD {