projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
272a193
)
oops
Tokuhiro Matsuno [Sat, 6 Dec 2008 07:40:25 +0000 (07:40 +0000)]
t/800_shikabased/011-util-linear-isa.t
patch
|
blob
|
blame
|
history
diff --git
a/t/800_shikabased/011-util-linear-isa.t
b/t/800_shikabased/011-util-linear-isa.t
index
2d2663d
..
2ce23dc
100644
(file)
--- a/
t/800_shikabased/011-util-linear-isa.t
+++ b/
t/800_shikabased/011-util-linear-isa.t
@@
-9,10
+9,9
@@
use Test::More tests => 2;
{
package Child;
- use Mouse;
- extends 'Parent';
+ unshift @Child::ISA, 'Parent';
}
-is_deeply get_linear_isa('Parent'), [ 'Parent' ];
-is_deeply get_linear_isa('Child'), [ 'Child', 'Parent' ];
+is_deeply join(', ', @{get_linear_isa('Parent')}), 'Parent';
+is_deeply join(', ', @{get_linear_isa('Child')}), 'Child, Parent';