Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / 300_immutable / 007_immutable_trigger_from_constructor.t
1 #!/usr/bin/perl
2 # This is automatically generated by author/import-moose-test.pl.
3 # DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4 use t::lib::MooseCompat;
5
6 use strict;
7 use warnings;
8
9 use Test::More;
10 use Test::Exception;
11
12
13 {
14     package AClass;
15
16     use Mouse;
17
18     has 'foo' => (is => 'rw', isa => 'Maybe[Str]', trigger => sub {
19         die "Pulling the Foo trigger\n"
20     });
21
22     has 'bar' => (is => 'rw', isa => 'Maybe[Str]');
23
24     has 'baz' => (is => 'rw', isa => 'Maybe[Str]', trigger => sub {
25         die "Pulling the Baz trigger\n"
26     });
27
28     __PACKAGE__->meta->make_immutable; #(debug => 1);
29
30     no Mouse;
31 }
32
33 eval { AClass->new(foo => 'bar') };
34 like ($@, qr/^Pulling the Foo trigger/, "trigger from immutable constructor");
35
36 eval { AClass->new(baz => 'bar') };
37 like ($@, qr/^Pulling the Baz trigger/, "trigger from immutable constructor");
38
39 lives_ok { AClass->new(bar => 'bar') } '... no triggers called';
40
41 done_testing;