Re: testing dependent modules

2007-05-08 Thread David Cantrell
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

Test::Kwalitee

2007-05-08 Thread Nathan Haigh
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;

Re: Test::Kwalitee

2007-05-08 Thread James Keenan
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

Re: Test::Kwalitee

2007-05-08 Thread Chris Dolan
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: --