Revert most of the conversion to Test::Fatal so we can redo it
[gitmo/Moose.git] / t / 300_immutable / 005_multiple_demolish_inline.t
CommitLineData
ee7f68b6 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
a28e50e4 6use Test::More;
53a4d826 7use Test::Exception;
ee7f68b6 8
7ff56534 9
ee7f68b6 10{
11 package Foo;
12 use Moose;
13
14 has 'foo' => (is => 'rw', isa => 'Int');
15
16 sub DEMOLISH { }
17}
18
19{
20 package Bar;
21 use Moose;
22
23 extends qw(Foo);
24 has 'bar' => (is => 'rw', isa => 'Int');
25
26 sub DEMOLISH { }
27}
28
53a4d826 29lives_ok {
ee7f68b6 30 Bar->new();
53a4d826 31} 'Bar->new()';
ee7f68b6 32
53a4d826 33lives_ok {
a63e370d 34 Bar->meta->make_immutable;
53a4d826 35} 'Bar->meta->make_immutable';
a63e370d 36
37is( Bar->meta->get_method('DESTROY')->package_name, 'Bar',
38 'Bar has a DESTROY method in the Bar class (not inherited)' );
8756d34f 39
53a4d826 40lives_ok {
8756d34f 41 Foo->meta->make_immutable;
53a4d826 42} 'Foo->meta->make_immutable';
8756d34f 43
44is( Foo->meta->get_method('DESTROY')->package_name, 'Foo',
45 'Foo has a DESTROY method in the Bar class (not inherited)' );
a28e50e4 46
47done_testing;