Devel--Cover
Devel--Cover copied to clipboard
Code coverage metrics for Perl
I was trying out the html_basic report and noticed that all subroutine headers and package statements are missing from the report. They are not even counted, so that the line...
Ran into this, and suspect it's related to: https://metacpan.org/pod/Syntax::Keyword::Try Can collect more info and poke at it when you let me know what would most help you. Meanwhile, any thoughts...
The call counts for overloads are based on what perl does internally, which has changed in some cases in new perl. Create a new output file reflecting the new call...
Hi, I host some perl code inside a [gitlab instance](https://salsa.debian.org/debconf-video-team/sreview). Gitlab has support for parsing code coverage reports, which it can then use to visualize when a merge request changes...
Details here: https://github.com/Perl/perl5/issues/19869
Fix #301 This pull request provides a fix for https://github.com/pjcj/Devel--Cover/issues/301
[Pod::Coverage](https://metacpan.org/pod/Pod::Coverage) allows you to specify a list of regular expressions used to skip coverage for particular symbols via the `trustme` parameter. Whilst it isn't documented in the usage for `cover`,...
It would be helpful if it could be documented which environment variables are set by the script which does coverage reports for cpancover.com — `$ENV{AUTOMATED_TESTING}`, etc. Not just when the...
``` #!/usr/bin/perl use strict; use warnings; use Test::More; use Test::FailWarnings; { my $thing = bless [], 'LeakDetector'; is( $thing, $thing, 'I am I' ); } done_testing; # ---------------------------------------------------------------------- package LeakDetector;...
``` ; perl -E 'say $^V' v5.28.3 ; ; perldoc Devel::Cover | grep version | head -n1 version 1.36 ; ; perl min_explode.pl ; ; PERL5OPT='-MDevel::Cover' perl min_explode.pl Global symbol...