clean up module hiding in tests
[p5sagit/JSON-MaybeXS.git] / t / none.t
CommitLineData
3be1e192 1use strict;
4e1fb2f8 2use warnings;
b4d74169 3
4# hide Cpanel::JSON::XS, JSON::XS, JSON::PP
5use lib map {
7c484eb9 6 my $m = $_;
7 sub { return unless $_[1] eq $m; die "Can't locate $m in \@INC (hidden).\n" };
b4d74169 8} qw{Cpanel/JSON/XS.pm JSON/XS.pm JSON/PP.pm};
9
2c67ae64 10use Test::More 0.88;
3be1e192 11
12ok(!eval { require JSON::MaybeXS; 1 }, 'Class failed to load');
13
3be1e192 14like(
b4d74169 15 $@, qr{Can't locate Cpanel/JSON/XS\.pm.*Can't locate JSON/XS\.pm.*Can't locate JSON/PP\.pm}s,
16205c4a 16 'All errors reported'
3be1e192 17);
18
19done_testing;