summaryrefslogtreecommitdiffstats
path: root/t/disable.t
blob: 73b9ed137288ce741286df087bfacc6c888c6a49 (plain) (blame)
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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

package Foo;

sub new {
    my $class = shift;
    bless {}, $class;
}

package Foo::Moose;
use Moose;
use MooseX::NonMoose;
extends 'Foo';

package Foo::Moose2;
use Moose;
use MooseX::NonMoose;
extends 'Foo';

package main;

ok(Foo::Moose->meta->has_method('new'), 'Foo::Moose has a constructor');
my $method = Foo::Moose->meta->get_method('new');
Foo::Moose->meta->make_immutable;
isnt($method, Foo::Moose->meta->get_method('new'),
     'make_immutable replaced the constructor with an inlined version');
my $method2 = Foo::Moose2->meta->get_method('new');
Foo::Moose2->meta->make_immutable(inline_constructor => 0);
is($method2, Foo::Moose2->meta->get_method('new'),
   'make_immutable doesn\'t replace the constructor if we ask it not to');

done_testing;