Convert all tests to done_testing.
[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;
ee7f68b6 7use Test::Exception;
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
29lives_ok {
30 Bar->new();
31} 'Bar->new()';
32
33lives_ok {
a63e370d 34 Bar->meta->make_immutable;
35} 'Bar->meta->make_immutable';
36
37is( Bar->meta->get_method('DESTROY')->package_name, 'Bar',
38 'Bar has a DESTROY method in the Bar class (not inherited)' );
8756d34f 39
40lives_ok {
41 Foo->meta->make_immutable;
42} 'Foo->meta->make_immutable';
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;