bug in inlined constructor and tests
[gitmo/Moose.git] / t / 300_immutable / 001_immutable_moose.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 16;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Moose');
11     use_ok('Moose::Meta::Role');
12 }
13
14 {
15   package FooRole;
16   our $VERSION = '0.01';
17   sub foo { 'FooRole::foo' }
18 }
19
20 {
21   package Foo;
22   use Moose;
23
24   #two checks because the inlined methods are different when
25   #there is a TC present.
26   has 'foos' => (is => 'ro', lazy_build => 1);
27   has 'bars' => (isa => 'Str', is => 'ro', lazy_build => 1);
28   has 'bazes' => (isa => 'Str', is => 'ro', builder => '_build_bazes');
29   sub _build_foos  { "many foos" }
30   sub _build_bars  { "many bars" }
31   sub _build_bazes { "many bazes" }
32 }
33
34 {
35   my $foo_role = Moose::Meta::Role->initialize('FooRole');
36   my $meta = Foo->meta;
37
38   lives_ok{ Foo->new                    } "lazy_build works";
39   is(Foo->new->foos, 'many foos'        , "correct value for 'foos'  before inlining constructor");
40   is(Foo->new->bars, 'many bars'        , "correct value for 'bars'  before inlining constructor");
41   is(Foo->new->bazes, 'many bazes'      , "correct value for 'bazes' before inlining constructor");
42   lives_ok{ $meta->make_immutable       } "Foo is imutable";
43   dies_ok{  $meta->add_role($foo_role)  } "Add Role is locked";
44   lives_ok{ Foo->new                    } "Inlined constructor works with lazy_build";
45   is(Foo->new->foos, 'many foos'        , "correct value for 'foos'  after inlining constructor");
46   is(Foo->new->bars, 'many bars'        , "correct value for 'bars'  after inlining constructor");
47   is(Foo->new->bazes, 'many bazes'      , "correct value for 'bazes' after inlining constructor");
48   lives_ok{ $meta->make_mutable         } "Foo is mutable";
49   lives_ok{ $meta->add_role($foo_role)  } "Add Role is unlocked";
50
51
52
53 }
54
55 {
56   package Bar;
57
58   use Moose;
59
60   sub BUILD { 'bar' }
61 }
62
63 {
64   package Baz;
65
66   use Moose;
67
68   extends 'Bar';
69
70   sub BUILD { 'baz' }
71 }
72
73 lives_ok { Bar->meta->make_immutable }
74   'Immutable meta with single BUILD';
75
76 lives_ok { Baz->meta->make_immutable }
77   'Immutable meta with multiple BUILDs';
78
79 =pod
80
81 Nothing here yet, but soon :)
82
83 =cut