Why do you want to use the module without installing it? Is it to test the module during development? If so, put your test code in
test.pl and run it with
make test. Alternately you can delete
test.pl and create a
t/ directory containing multiple test scripts with arbitary names that will be run by
make test.
If you're just in the mood to run arbitrary scripts against your development copy of Bar.pm then a quick hack would be:
$ ln -s Foo/Bar/Bar.pm Foo/Bar.pm
$ export PERL5LIB=`pwd`
Modulo your shell of choice - the above is for bash.
The blib solution mentioned already will also work but you'll need to do a make to copy Bar.pm into Foo/Bar/blib/ each time you make a change.
-sam
PS: I cover all this and more in my upcoming book - Writing Perl Modules for CPAN.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.