The devel-cover tag has no wiki summary.
13
votes
1answer
698 views
How can I run Devel::Cover under mod_perl2?
Unfortunately, Devel::Cover does not yet work with threads.
It doesn't work with prefork either.
Being use'd in startup.pl, Devel::Cover issues
Not a CODE reference.
END failed--call queue aborted.
...
2
votes
1answer
161 views
No coverage for runtime with Devel::Cover and ModPerl::Registry
When I'm running Devel::Cover with ModPerl::Registry, I get no coverage info except for BEGIN blocks. When I'm running the same script with Devel::Cover from command line or as a CGI, everything works ...
1
vote
1answer
168 views
What do the columns in Perl's Devel::Cover output mean? [closed]
In the "Perl build, unit testing, code coverage: A complete working example by Kurt W. Leucht" we see that we run build testcover and bet the coverage report. We see the result in the figure "File ...
0
votes
1answer
37 views
Devel::Cover - only subroutine coverage
I want only subroutine coverage in my perl file.
So in main file I inserted the following statement:
mainfile.pl
use Devel::Cover::Subroutine;
If I run mainfile.pl it shows the error:
...