1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
use strict;
use warnings;
use Test::More tests => 4;
=pod
Start with this:
<A>
/ \
<B> <C>
\ /
<D>
=cut
{
package Diamond_A;
use Class::C3;
sub hello { 'Diamond_A::hello' }
}
{
package Diamond_B;
BEGIN { our @ISA = ('Diamond_A'); }
use Class::C3;
}
{
package Diamond_C;
use Class::C3;
BEGIN { our @ISA = ('Diamond_A'); }
sub hello { 'Diamond_C::hello' }
}
{
package Diamond_D;
BEGIN { our @ISA = ('Diamond_B', 'Diamond_C'); }
use Class::C3;
}
Class::C3::initialize();
is_deeply(
[ Class::C3::calculateMRO('Diamond_D') ],
[ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
'... got the right MRO for Diamond_D');
=pod
Then change it to this:
<E> <A>
\ / \
<B> <C>
\ /
<D>
=cut
{
package Diamond_E;
use Class::C3;
sub hello { 'Diamond_E::hello' }
}
{
no strict 'refs';
unshift @{"Diamond_B::ISA"} => 'Diamond_E';
}
is_deeply(
[ Class::C3::calculateMRO('Diamond_D') ],
[ qw(Diamond_D Diamond_B Diamond_E Diamond_C Diamond_A) ],
'... got the new MRO for Diamond_D');
# Doesn't work with core support, since reinit is not neccesary and the change
# takes effect immediately
SKIP: {
skip "This test does not work with a c3-patched perl interpreter", 1
if $Class::C3::C3_IN_CORE;
is(Diamond_D->hello, 'Diamond_C::hello', '... method still resolves with old MRO');
}
Class::C3::reinitialize();
is(Diamond_D->hello, 'Diamond_E::hello', '... method resolves with reinitialized MRO');
|