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
|
use strict;
use warnings;
use Test::More;
use Test::Fatal;
{
package MooParent;
use Moo;
has foo => (
is => 'ro',
default => sub { 'MooParent' },
);
}
{
package MooseChild;
use Moose;
extends 'MooParent';
has '+foo' => (
default => 'MooseChild',
);
}
{
package MooseChild2;
use Moose;
extends 'MooParent';
has '+foo' => (
default => 'MooseChild2',
);
__PACKAGE__->meta->make_immutable
}
is(
MooseChild->new->foo,
'MooseChild',
'default value in Moose child'
);
is(
MooseChild2->new->foo,
'MooseChild2',
'default value in Moose child'
);
done_testing;
|