summaryrefslogtreecommitdiff
path: root/t/basics/universal_methods_wrappable.t
blob: 350688cc483ab91ebb80e593a216d443968fe5be (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
use strict;
use warnings;

use Test::Fatal;
use Test::More;

{

    package FakeBar;
    use Moose::Role;

    around isa => sub {
        my ( $orig, $self, $v ) = @_;
        return 1 if $v eq 'Bar';
        return $orig->( $self, $v );
    };

    package Foo;
    use Moose;

    use Test::More;

    ::is( ::exception { with 'FakeBar' }, undef, 'applied role' );

    my $foo = Foo->new;
    ::isa_ok( $foo, 'Bar' );
}

done_testing;