How do I use test Perl modules from test Perl scripts?
- by DVK
If my Perl code has a production code location and "test" code location
(e.g. production Perl code us in /usr/code/scripts, test Perl code is in /usr/code/test/scripts; production Perl libraries are in /usr/code/lib/perl and test versions of those libraries are in /usr/code/test/lib/perl, is there an easy way for me to achieve such a setup?
The…