diff options
Diffstat (limited to 'devel/p5-Devel-Cover/pkg-descr')
-rw-r--r-- | devel/p5-Devel-Cover/pkg-descr | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/p5-Devel-Cover/pkg-descr b/devel/p5-Devel-Cover/pkg-descr new file mode 100644 index 000000000000..1b94a7452330 --- /dev/null +++ b/devel/p5-Devel-Cover/pkg-descr @@ -0,0 +1,20 @@ +This module provides code coverage metrics for Perl. + +If you can't guess by the version number this is an alpha release. + +Code coverage data are collected using a pluggable runops function which counts +how many times each op is executed. These data are then mapped back to reality +using the B compiler modules. There is also a statement profiling facility +which needs a better backend to be really useful. + +The cover program can be used to generate coverage reports. + +Statement, branch, condition, subroutine, pod and time coverage information is +reported. Statement coverage data should be reasonable, although there may be +some statements which are not reported. Branch and condition coverage data +should be mostly accurate too, although not always what one might initially +expect. Subroutine coverage should be as accurate as statement coverage. Pod +coverage comes from Pod::Coverage. Coverage data for path coverage are not yet +collected. + +WWW: http://search.cpan.org/dist/Devel-Cover/ |