in reply to Devel::Cover can't find modules

You probably didn't set it up right. Try this:

1.) You'll need Test::Run, Test::Run::CmdLine, and Test::Trap

2.) download CGI

3.) Unpack and cd to the t directory

4.) Run: HARNESS_PERL_SWITCHES="-MDevel::Cover" runprove -v

5.) Then run: cover

I hope this helps.

Replies are listed 'Best First'.
Re^2: Devel::Cover can't find modules
by dinomite (Sexton) on Apr 29, 2008 at 18:24 UTC
    Ah-ha! I'm not sure which of the depended modules fixed it, but installing Test::Run, Test::Run::CmdLine & Test::Trap along with their own dependencies made the warning from Devel::Cover go away. Thanks for the tip!