blob: da34424334b29e314e75df05be202b7c08e04feb (
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
|
use strict;
use warnings;
use Test::More 0.88;
use Test::Fatal 0.006;
{
package T;
use strict;
use warnings;
use lib 't/lib';
use Module::Implementation;
my $loader = Module::Implementation::build_loader_sub(
implementations => [ 'ImplFails1', 'Impl1' ],
symbols => [qw( return_42 )],
);
$ENV{T_IMPLEMENTATION} = 'ImplFails1';
::like(
::exception{ $loader->() },
qr/Could not load T::ImplFails1/,
'Got an exception when implementation requested in env value fails to load'
);
}
done_testing();
|