This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(?foo:...) loses passed in charset
[perl5.git] / t / mro / basic_02_dfs.t
CommitLineData
e1a479c5
BB
1#!./perl
2
3use strict;
4use warnings;
e1a479c5 5
c94dd5be 6require q(./test.pl); plan(tests => 10);
e1a479c5
BB
7
8=pod
9
10This example is take from: http://www.python.org/2.3/mro.html
11
12"My first example"
13class O: pass
14class F(O): pass
15class E(O): pass
16class D(O): pass
17class C(D,F): pass
18class B(D,E): pass
19class A(B,C): pass
20
21
22 6
23 ---
24Level 3 | O | (more general)
25 / --- \
26 / | \ |
27 / | \ |
28 / | \ |
29 --- --- --- |
30Level 2 3 | D | 4| E | | F | 5 |
31 --- --- --- |
32 \ \ _ / | |
33 \ / \ _ | |
34 \ / \ | |
35 --- --- |
36Level 1 1 | B | | C | 2 |
37 --- --- |
38 \ / |
39 \ / \ /
40 ---
41Level 0 0 | A | (more specialized)
42 ---
43
44=cut
45
46{
47 package Test::O;
48 use mro 'dfs';
49
50 package Test::F;
51 use mro 'dfs';
52 use base 'Test::O';
53
54 package Test::E;
55 use base 'Test::O';
56 use mro 'dfs';
57
58 sub C_or_E { 'Test::E' }
59
60 package Test::D;
61 use mro 'dfs';
62 use base 'Test::O';
63
64 sub C_or_D { 'Test::D' }
65
66 package Test::C;
67 use base ('Test::D', 'Test::F');
68 use mro 'dfs';
69
70 sub C_or_D { 'Test::C' }
71 sub C_or_E { 'Test::C' }
72
73 package Test::B;
74 use mro 'dfs';
75 use base ('Test::D', 'Test::E');
76
77 package Test::A;
78 use base ('Test::B', 'Test::C');
79 use mro 'dfs';
80}
81
c94dd5be 82ok(eq_array(
e1a479c5 83 mro::get_linear_isa('Test::F'),
c94dd5be
RGS
84 [ qw(Test::F Test::O) ]
85), '... got the right MRO for Test::F');
e1a479c5 86
c94dd5be 87ok(eq_array(
e1a479c5 88 mro::get_linear_isa('Test::E'),
c94dd5be
RGS
89 [ qw(Test::E Test::O) ]
90), '... got the right MRO for Test::E');
e1a479c5 91
c94dd5be 92ok(eq_array(
e1a479c5 93 mro::get_linear_isa('Test::D'),
c94dd5be
RGS
94 [ qw(Test::D Test::O) ]
95), '... got the right MRO for Test::D');
e1a479c5 96
c94dd5be 97ok(eq_array(
e1a479c5 98 mro::get_linear_isa('Test::C'),
c94dd5be
RGS
99 [ qw(Test::C Test::D Test::O Test::F) ]
100), '... got the right MRO for Test::C');
e1a479c5 101
c94dd5be 102ok(eq_array(
e1a479c5 103 mro::get_linear_isa('Test::B'),
c94dd5be
RGS
104 [ qw(Test::B Test::D Test::O Test::E) ]
105), '... got the right MRO for Test::B');
e1a479c5 106
c94dd5be 107ok(eq_array(
e1a479c5 108 mro::get_linear_isa('Test::A'),
c94dd5be
RGS
109 [ qw(Test::A Test::B Test::D Test::O Test::E Test::C Test::F) ]
110), '... got the right MRO for Test::A');
e1a479c5
BB
111
112is(Test::A->C_or_D, 'Test::D', '... got the expected method output');
113is(Test::A->can('C_or_D')->(), 'Test::D', '... can got the expected method output');
114is(Test::A->C_or_E, 'Test::E', '... got the expected method output');
115is(Test::A->can('C_or_E')->(), 'Test::E', '... can got the expected method output');