From: Jesse Luehrs Date: Mon, 12 Dec 2011 15:01:02 +0000 (-0600) Subject: actually, this isn't our fault, this is just generic 5.8 brokenness X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=gitmo%2FPackage-Stash.git actually, this isn't our fault, this is just generic 5.8 brokenness --- 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;