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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Moose;
use Test::Fatal;
plan skip_all => "only relevant for Moose 2.0"
if Moose->VERSION < 1.9900;
{
package Foo::Role;
use Moose::Role;
use MooseX::UndefTolerant;
has foo => (
is => 'ro',
isa => 'Str',
predicate => 'has_foo',
);
}
{
package Foo;
use Moose;
with 'Foo::Role';
}
{
package Bar::Role;
use Moose::Role;
}
{
package Bar;
use Moose;
with 'Foo::Role', 'Bar::Role';
}
{
package Baz::Role;
use Moose::Role;
with 'Foo::Role';
}
{
package Baz;
use Moose;
with 'Baz::Role';
}
{
package Quux;
use Moose;
with 'Foo::Role';
with 'Bar::Role';
}
with_immutable {
my $foo;
is(exception { $foo = Foo->new(foo => undef) }, undef,
"can set to undef in constructor");
ok(!$foo->has_foo, "role attribute isn't set");
my $bar;
is(exception { $bar = Bar->new(foo => undef) }, undef,
"can set to undef in constructor");
ok(!$bar->has_foo, "role attribute isn't set");
my $baz;
is(exception { $baz = Baz->new(foo => undef) }, undef,
"can set to undef in constructor");
ok(!$baz->has_foo, "role attribute isn't set");
my $quux;
is(exception { $quux = Quux->new(foo => undef) }, undef,
"can set to undef in constructor");
ok(!$quux->has_foo, "role attribute isn't set");
} 'Foo', 'Bar', 'Baz', 'Quux';
done_testing;
|