Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: how to force Build test to load all modules from blib/lib first

by rbroberts (Initiate)
on Nov 22, 2012 at 11:35 UTC ( [id://1005112]=note: print w/replies, xml ) Need Help??


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

I already have a BEGIN block in the test, like this
#! /usr/bin/env perl use Test::More tests => 7; use POSIX qw(strftime); use lib "$ENV{FVIS_HOME}/monitor/lib"; use lib "$ENV{FVIS_HOME}/monitor/tools"; BEGIN { use Cwd; use File::Path; use File::Basename qw(basename dirname); my $tmpdir = &getcwd() . "/test/" . basename($0); rmtree($tmpdir); mkpath("$tmpdir/log"); mkpath("$tmpdir/monitor/schedule"); mkpath("$tmpdir/monitor/etc"); symlink("$ENV{FVIS_HOME}/lib", "$tmpdir/lib"); symlink("$ENV{FVIS_HOME}/etc", "$tmpdir/etc"); $ENV{FVIS_HOME} = $tmpdir; $ENV{GUMS_ROOT} = "$tmpdir/monitor"; unshift(@INC, "$ENV{FVIS_HOME}/lib/perl"); unshift(@INC, "./blib/lib"); } use FVIS::Rachlis::Job; use FVIS::Rachlis::Schedule::File; use FVIS::Rachlis::Schedule;
What this is doing is setting up a sandbox linking parts to the actual installed area. The behavior with our without the two unshift() is the same. Both FVIS::Rachlis::Job and FVIS::Rachlis::Schedule::File; are loaded from blib/lib, FVIS::Rachlis::Schedule is loaded from $ENV{FVIS_HOME}/lib/perl which is already in PERL5LIB. Both load FVIS::Log which wraps part of Log::Log4perl. Flipping the order of the last two flips which one is loaded from blib/lib.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1005112]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (8)
As of 2024-03-28 09:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found