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
|
use strict;
use warnings;
use Test::More;
use Role::Tiny ();
{
eval q{
package RoleWithMatchingSub;
use Role::Tiny;
sub stubsub { "stubsub" }
1;
} or die $@;
my $e;
if (!eval q{
package ClassWithStub;
use Role::Tiny::With;
sub stubsub;
with 'RoleWithMatchingSub';
1;
}) {
$e = $@;
}
is $e, undef,
'no error composing role in class with stub';
ok exists &ClassWithStub::stubsub && !defined &ClassWithStub::stubsub,
'stub sub prevents composing matching sub';
}
{
eval q{
package RoleWithStub;
use Role::Tiny;
sub stubsub;
1;
} or die $@;
my $e;
if (!eval q{
package ComposeStub;
use Role::Tiny::With;
with 'RoleWithStub';
1;
}) {
$e = $@;
}
is $e, undef,
'no error composing role with stub';
ok exists &ComposeStub::stubsub && !defined &ComposeStub::stubsub,
'composing role includes stub subs';
}
done_testing;
|