in reply to Re: Issues when testing module loading
in thread Issues when testing module loading
Thanks for that reply - yes if I were distributing things using a Makefile.PL then this would be a non-issue. But right now I distribute things as Debian packages, and raw .tar.gz files.
(This particular case came up when I made a new release of my chronicle blog compiler.)
Changing my test case to read as follows still fails though:
#/usr/bin/perl -w # use strict; use warnings; no warnings "all"; use Test::More qw( no_plan ); BEGIN{ use_ok( 'CGI' ); } BEGIN{ use_ok( 'Date::Format' ); } BEGIN{ use_ok( 'POSIX' ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Issues when testing module loading
by moritz (Cardinal) on Jun 03, 2008 at 16:16 UTC | |
by skx (Parson) on Jun 03, 2008 at 18:48 UTC |