in reply to Re: Tests in a module/package?
in thread Tests in a module/package?
This is the usual way to specify a module location relative to the script location.use FindBin qw( $Bin ); use lib "$Bin/lib"; use My::Special::Purpose::Test::Code qw( :all );
|
|---|