summaryrefslogtreecommitdiffstats
path: root/t/moose/021_export_with_prototype.t
blob: 6c8f5e25eb683b7961683c84947dbb690ea0b822 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use lib "t/lib";
package MyExporter::User;
use MyExporter;

use Test::More;
use Test::Exception;

lives_and {
    with_prototype {
        my $caller = caller(0);
        is($caller, 'MyExporter', "With_caller prototype code gets called from MyMooseX");
    };
} "check function with prototype";

lives_and {
    as_is_prototype {
        my $caller = caller(0);
        is($caller, 'MyExporter', "As-is prototype code gets called from MyMooseX");
    };
} "check function with prototype";

done_testing;