projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4c5fcc1
)
superclasses expects an array, not a reference.
Dave Rolsky [Sun, 14 Sep 2008 21:20:23 +0000 (21:20 +0000)]
t/060_compat/003_foreign_inheritence.t
patch
|
blob
|
blame
|
history
diff --git
a/t/060_compat/003_foreign_inheritence.t
b/t/060_compat/003_foreign_inheritence.t
index
323b97e
..
d0acaa1
100644
(file)
--- a/
t/060_compat/003_foreign_inheritence.t
+++ b/
t/060_compat/003_foreign_inheritence.t
@@
-80,6
+80,6
@@
lives_ok {
} 'Immutability on Moose class extending Class::MOP class ok';
lives_ok {
- SubClass2->meta->superclasses([ 'MyBase' ]);
+ SubClass2->meta->superclasses('MyBase');
} 'Can subclass the same non-Moose class twice with different metaclasses';