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

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

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

done_testing;