summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-12-12 09:01:02 -0600
committerJesse Luehrs <doy@tozt.net>2011-12-12 09:01:02 -0600
commitd18c45ab55eb68cdc87ce76cae419fbacc0174d7 (patch)
tree7b04252b16d47095e4f8fb60db72d0e399b9e064
parent42b01b3381c4157c2fb4ea0905b653ff52e977ca (diff)
downloadpackage-stash-d18c45ab55eb68cdc87ce76cae419fbacc0174d7.tar.gz
package-stash-d18c45ab55eb68cdc87ce76cae419fbacc0174d7.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;