http://www.perlmonks.org?node_id=1005051


in reply to how to force Build test to load all modules from blib/lib first

How can I convince Perl to use blib/lib first for all of my modules?

You don't need to convince it, this is what it does already. For this behavior to change, your code must be to blame.

  • Comment on Re: how to force Build test to load all modules from blib/lib first

Replies are listed 'Best First'.
Re^2: how to force Build test to load all modules from blib/lib first
by rbroberts (Initiate) on Nov 22, 2012 at 11:30 UTC
    blib/lib is in @INC, but it is there in the "wrong" place; well, it's not at the front. It's a bit hard to figure out exactly what is happening because when running with -d, the modules are already loaded since that happens at compile time.