From: Jesse Luehrs Date: Mon, 12 Dec 2011 14:59:55 +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=HEAD;hp=9a7de0590d520b1676507850d4cd38e31ec4ab6d;p=gitmo%2FPackage-Stash-XS.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;