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
|
use strict;
use warnings;
use FindBin qw( $Bin );
my $lib_path;
BEGIN {
if ( $Bin =~ /xt/ ) {
$lib_path = "$Bin/../../t";
}
else {
$lib_path = "$Bin";
}
}
use lib "$lib_path/lib";
use Test::Fatal;
use Test::More 0.96;
use Specio::Library::XY;
require Specio::Library::Conflict;
like(
exception { Specio::Library::Conflict->import },
qr/\QThe main package already has a type named X/,
'Got an exception when a library import conflicts with already declared types'
);
done_testing();
|