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
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 15;
use Test::Mouse;
my @called;
do {
package Class;
use Mouse;
sub DEMOLISH {
push @called, 'Class::DEMOLISH';
}
# sub DEMOLISHALL {
# my $self = shift;
# push @called, 'Class::DEMOLISHALL';
# $self->SUPER::DEMOLISHALL(@_);
# }
package Child;
use Mouse;
extends 'Class';
sub DEMOLISH {
push @called, 'Child::DEMOLISH';
}
# sub DEMOLISHALL {
# my $self = shift;
# push @called, 'Child::DEMOLISHALL';
# $self->SUPER::DEMOLISHALL(@_);
# }
};
is_deeply([splice @called], [], "no DEMOLISH calls yet");
with_immutable sub {
ok(Class->meta, Class->meta->is_immutable ? 'mutable' : 'immutable');
{
my $object = Class->new;
is_deeply([splice @called], [], "no DEMOLISH calls yet");
}
is_deeply([splice @called], ['Class::DEMOLISH']);
{
my $child = Child->new;
is_deeply([splice @called], [], "no DEMOLISH calls yet");
}
is_deeply([splice @called], ['Child::DEMOLISH', 'Class::DEMOLISH']);
{
my $child = Child->new;
$child->DEMOLISHALL();
is_deeply([splice @called], ['Child::DEMOLISH', 'Class::DEMOLISH'], 'DEMOLISHALL');
}
is_deeply([splice @called], ['Child::DEMOLISH', 'Class::DEMOLISH'], 'DEMOLISHALL');
}, qw(Class Child);
|