whitespace cleanup
[gitmo/Class-C3-XS.git] / t / 30_next_method.t
CommitLineData
2605e591 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
437de023 6use Test::More tests => 4;
2605e591 7
437de023 8use Class::C3::XS;
2605e591 9
10=pod
11
12This tests the classic diamond inheritence pattern.
13
14 <A>
15 / \
16<B> <C>
17 \ /
18 <D>
19
20=cut
21
22{
23 package Diamond_A;
24 sub hello { 'Diamond_A::hello' }
1a9bebe0 25 sub foo { 'Diamond_A::foo' }
2605e591 26}
27{
28 package Diamond_B;
29 use base 'Diamond_A';
1a9bebe0 30 sub foo { 'Diamond_B::foo => ' . (shift)->next::method() }
2605e591 31}
32{
33 package Diamond_C;
1a9bebe0 34 use base 'Diamond_A';
2605e591 35
36 sub hello { 'Diamond_C::hello => ' . (shift)->next::method() }
1a9bebe0 37 sub foo { 'Diamond_C::foo => ' . (shift)->next::method() }
2605e591 38}
39{
40 package Diamond_D;
41 use base ('Diamond_B', 'Diamond_C');
1a9bebe0 42
43 sub foo { 'Diamond_D::foo => ' . (shift)->next::method() }
2605e591 44}
45
46is(Diamond_C->hello, 'Diamond_C::hello => Diamond_A::hello', '... method resolved itself as expected');
47
1a9bebe0 48is(Diamond_C->can('hello')->('Diamond_C'),
49 'Diamond_C::hello => Diamond_A::hello',
2605e591 50 '... can(method) resolved itself as expected');
1a9bebe0 51
52is(UNIVERSAL::can("Diamond_C", 'hello')->('Diamond_C'),
53 'Diamond_C::hello => Diamond_A::hello',
2605e591 54 '... can(method) resolved itself as expected');
55
1a9bebe0 56is(Diamond_D->foo,
57 'Diamond_D::foo => Diamond_B::foo => Diamond_C::foo => Diamond_A::foo',
2605e591 58 '... method foo resolved itself as expected');