summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--t/inc-hook.t12
1 files changed, 0 insertions, 12 deletions
diff --git a/t/inc-hook.t b/t/inc-hook.t
deleted file mode 100644
index a8deabb..0000000
--- a/t/inc-hook.t
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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;