http://www.perlmonks.org?node_id=683402


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

What exactly are you doing with your code? I can't extensively search through anything trying to guess what the errors mean without you spitting a line of code, or so. The blib directory used only during modules installation process. Are you testing modules?

Open source softwares? Share and enjoy. Make profit from them if you can. Yet, share and enjoy!

Replies are listed 'Best First'.
Re^2: Devel::Cover can't find modules
by dinomite (Sexton) on Apr 29, 2008 at 17:15 UTC
    Sorry, I should have made it clearer. I have a test suite for some libraries and it runs all fine and dandy. In order to get code coverage, I simply added use Devel::Cover to the test program which causes the warning to be thrown. The output from Devel::Cover is still created in cover_db, and I can run the cover command to get pretty output and that all works just fine. So, in short, everything is installed and working, I'm just confused why that warning is being thrown. I did find while searching yesterday that it the 'blib' thing might have something to do with an autoloader and indeed, Devel::Cover makes use of DynaLoader.