remove extraneous garbage from tests
[gitmo/Class-C3.git] / t / 30_next_method.t
CommitLineData
5d5c86d9 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
ef29cd70 6use Test::More tests => 5;
5d5c86d9 7
8=pod
9
10This tests the classic diamond inheritence pattern.
11
12 <A>
13 / \
14<B> <C>
15 \ /
16 <D>
17
18=cut
19
20{
21 package Diamond_A;
ef29cd70 22 use Class::C3;
5d5c86d9 23 sub hello { 'Diamond_A::hello' }
24 sub foo { 'Diamond_A::foo' }
25}
26{
27 package Diamond_B;
28 use base 'Diamond_A';
ef29cd70 29 use Class::C3;
5d5c86d9 30 sub foo { 'Diamond_B::foo => ' . (shift)->next::method() }
31}
32{
33 package Diamond_C;
ef29cd70 34 use Class::C3;
5d5c86d9 35 use base 'Diamond_A';
36
37 sub hello { 'Diamond_C::hello => ' . (shift)->next::method() }
38 sub foo { 'Diamond_C::foo => ' . (shift)->next::method() }
39}
40{
41 package Diamond_D;
42 use base ('Diamond_B', 'Diamond_C');
ef29cd70 43 use Class::C3;
5d5c86d9 44
45 sub foo { 'Diamond_D::foo => ' . (shift)->next::method() }
46}
47
2ffffc6d 48Class::C3::initialize();
49
5d5c86d9 50is_deeply(
51 [ Class::C3::calculateMRO('Diamond_D') ],
52 [ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
53 '... got the right MRO for Diamond_D');
54
55is(Diamond_D->hello, 'Diamond_C::hello => Diamond_A::hello', '... method resolved itself as expected');
56
57is(Diamond_D->can('hello')->('Diamond_D'),
58 'Diamond_C::hello => Diamond_A::hello',
59 '... can(method) resolved itself as expected');
60
61is(UNIVERSAL::can("Diamond_D", 'hello')->('Diamond_D'),
62 'Diamond_C::hello => Diamond_A::hello',
63 '... can(method) resolved itself as expected');
64
65is(Diamond_D->foo,
66 'Diamond_D::foo => Diamond_B::foo => Diamond_C::foo => Diamond_A::foo',
67 '... method foo resolved itself as expected');