Gabor Szabo wrote:
Before releasing or installing a module it might be a good thing
to test all the other CPAN modules that depend on the one to be
released or installed.
Is there a tool to do this?
How would you do this?
Use the CPANTS database to find what depends on your module, then, in a
I hope this is the correct place for this question!
I'm trying to use Test::Kwalitee with the following test script:
-- test script start --
use strict;
use warnings;
use Test::More;
eval {
require Test::Kwalitee;
Test::Kwalitee->import();
};
plan( skip_all => 'Test::Kwalitee not installed;
Nathan Haigh wrote:
> I hope this is the correct place for this question!
>
> I'm trying to use Test::Kwalitee with the following test script:
>
>
I started to write a response, but when I tried to install
Test::Kwalitee from the CPAN shell, I ran into massive problems
installing its prerequi
On May 8, 2007, at 8:50 AM, Nathan Haigh wrote:
I hope this is the correct place for this question!
I'm trying to use Test::Kwalitee with the following test script:
-- test script start --
[...snip...]
-- test script end --
However, it seems to die unexpectedly with the following output:
--