- depend to Scalar::Util when perl5.6.x
[gitmo/Mouse.git] / t / 800_shikabased / 011-util-linear-isa.t
CommitLineData
272a1930 1use strict;
2use warnings;
3use Mouse::Util 'get_linear_isa';
4use Test::More tests => 2;
5
6{
7 package Parent;
8}
9
10{
11 package Child;
12 use Mouse;
13 extends 'Parent';
14}
15
16is_deeply get_linear_isa('Parent'), [ 'Parent' ];
17is_deeply get_linear_isa('Child'), [ 'Child', 'Parent' ];
18