summaryrefslogtreecommitdiff
path: root/t/bugs/apply_role_to_one_instance_only.t
blob: 36df90053738fa1c5cb1abca3fcbc5ae1d95bb11 (plain)
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
use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
    package MyRole1;
    use Moose::Role;

    sub a_role_method { 'foo' }
}

{
    package MyRole2;
    use Moose::Role;
    # empty
}

{
    package Foo;
    use Moose;
}

my $instance_with_role1 = Foo->new;
MyRole1->meta->apply($instance_with_role1);

my $instance_with_role2 = Foo->new;
MyRole2->meta->apply($instance_with_role2);

ok ((not $instance_with_role2->does('MyRole1')),
    'instance does not have the wrong role');

ok ((not $instance_with_role2->can('a_role_method')),
    'instance does not have methods from the wrong role');

ok (($instance_with_role1->does('MyRole1')),
    'role was applied to the correct instance');

is( exception {
    is $instance_with_role1->a_role_method, 'foo'
}, undef, 'instance has correct role method' );

done_testing;