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
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Moose;
my ($destroyed, $demolished);
package Foo;
sub new { bless {}, shift }
sub DESTROY { $destroyed++ }
package Foo::Sub;
use Moose;
use MooseX::NonMoose;
extends 'Foo';
sub DEMOLISH { $demolished++ }
package main;
with_immutable {
($destroyed, $demolished) = (0, 0);
{ Foo::Sub->new }
is($destroyed, 1, "non-Moose destructor called");
is($demolished, 1, "Moose destructor called");
} 'Foo::Sub';
done_testing;
|