in reply to Re: My first module is failing on CPAN
in thread My first module is failing on CPAN

Yeah, there is a way to test the distribution built with make dist, it is called make disttest

Prior to releasing anything to CPAN, I usually do this:

perl Makefile.PL && make test && make dist && make disttest

Replies are listed 'Best First'.
Re^3: My first module is failing on CPAN
by leocharre (Priest) on Jun 30, 2008 at 12:42 UTC
    Thanks for the pointer!