summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-12-12 08:59:55 -0600
committerJesse Luehrs <doy@tozt.net>2011-12-12 08:59:55 -0600
commit63c5566213607f2fabda8ab3c40021b1ca7deca8 (patch)
tree839474229db89fb9f31237032562c4217a6f45ad
parent9a7de0590d520b1676507850d4cd38e31ec4ab6d (diff)
downloadpackage-stash-xs-63c5566213607f2fabda8ab3c40021b1ca7deca8.tar.gz
package-stash-xs-63c5566213607f2fabda8ab3c40021b1ca7deca8.zip
actually, this isn't our fault, this is just generic 5.8 brokenness
-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;