summaryrefslogtreecommitdiffstats
path: root/t/inc-hook.t
blob: 9dd074282ff0f2db248d1fc035616db534cc752a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;

unshift @INC, sub { "some regex" =~ /match/; undef };

is(exception { require Package::Stash }, undef, "works with an \@INC hook");

done_testing;