... which had a tiny but significant bug to do with running under tests.
Richard Clamp diagnosed a problem as being due to the fact that we exclude anything not from blib if there was blib.pm is in %INC.
my @SEARCHDIR = exists $INC{"blib.pm"} ? grep {/blib/} @INC : @INC;
Of course if the module being tested used another module that used
(
Read more... )