sync test suite
[gitmo/Package-Stash-XS.git] / t / inc-hook.t
diff --git a/t/inc-hook.t b/t/inc-hook.t
new file mode 100644 (file)
index 0000000..a8deabb
--- /dev/null
@@ -0,0 +1,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;