The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:Devel::Coverage"

Devel::Cover - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

This module provides code coverage metrics for Perl. Code coverage metrics describe how thoroughly tests exercise code. By using Devel::Cover you can discover areas of code not exercised by your tests and determine which tests to create to increase c...

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::Cover::DB - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

This module provides access to a database of code coverage information....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::Cover::Op - B::Concise with coverage data River stage three • 61 direct dependents • 117 total dependents

This module works as if calling B::Concise but also outputs coverage information. Its primary purpose is to aid in the development of Devel::Cover. See comments in Cover.xs (especially set_conditional()) to aid in interpreting the output....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::QuickCover - Quick & dirty code coverage for Perl River stage zero No dependents

The following program sets up the coverage hook on "use" and dumps a report (to "/tmp" by default) at the end of execution. use Devel::QuickCover; my $x = 1; my $z = 1 + $x; The following program sets up the coverage hook on "start()" and dumps a rep...

GONZUS/Devel-QuickCover-0.900014 - 09 Aug 2019 08:10:20 UTC

Devel::Cover::Pod - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

Module for storing pod coverage information....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::CoverReport - Advanced Perl code coverage report generator River stage zero No dependents

This module provides advanced reports based on Devel::Cover database....

NATANAEL/Devel-CoverReport-0.05 - 17 May 2012 03:56:55 UTC

Devel::Cover::Time - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

Module for storing time coverage information....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::Hide - Forces the unavailability of specified Perl modules (for testing) River stage three • 14 direct dependents • 330 total dependents

Given a list of Perl modules/filenames, this module makes "require" and "use" statements fail (no matter the specified files/modules are installed or not). They *die* with a message like: Can't locate Module/ToHide.pm in @INC (hidden) The original in...

DCANTRELL/Devel-Hide-0.0015 - 28 Sep 2021 22:45:29 UTC

Bundle::Devel - A bundle to install the main set of Devel:: modules River stage zero No dependents

Let's just say I'm sick of installing the Devel:: modules on at a time. This bundle installs most of the common Devel:: modules in one go. That's the basics for me, but if you want something added, just let me know, or better file a bug against the p...

ADAMK/Bundle-Devel-0.2 - 25 Nov 2003 07:41:45 UTC

Devel::Cover::Branch - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

Module for storing branch coverage information....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::DTrace - Enable dtrace probes for subroutine entry, exit River stage zero No dependents

This module is alpha. Use with care. Expect problems. Report bugs. Sun's dtrace tool is currently supplied with Solaris and Mac OS 10.5. It allows probes to be attached to a running executable so that debug information may be gathered. This module pr...

ANDYA/Devel-DTrace-0.11 - 07 Mar 2009 22:48:32 UTC

Devel::SmallProf - per-line Perl profiler River stage one • 1 direct dependent • 2 total dependents

The Devel::SmallProf profiler is focused on the time taken for a program run on a line-by-line basis. It is intended to be as "small" in terms of impact on the speed and memory usage of the profiled program as possible and also in terms of being simp...

SALVA/Devel-SmallProf-2.02 - 11 May 2007 10:05:34 UTC

Devel::CallStack - record the calling stacks River stage zero No dependents

The Devel::CallStack is meant for code developers wondering why their code is running so slow. One possible reason is simply too many subroutine or method calls since they are not cheap in Perl. The Devel::CallStack records the calling stacks, how ma...

JHI/Devel-CallStack-0.19 - 27 Jan 2005 18:13:55 UTC

Devel::Cover::DB::File - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::PerlySense - Perl IDE backend with Emacs frontend River stage zero No dependents

PerlySense is a Perl IDE backend that integrates with editor frontends, currently Emacs. (While no one has written a Vim frontend, PerlySense can emit Vim style data structures.) Conveniently navigate and browse the code and documentation of your pro...

JOHANL/Devel-PerlySense-0.0221 - 30 Aug 2019 08:12:04 UTC

Devel::Deanonymize - A small tool to make anonymous sub visible River stage one • 1 direct dependent • 1 total dependent

When collecting Coverage statistics with Devel::Cover a construct like below appear to be invisible and is simply ignored by the statistic: my $sub = sub { print "hello"; } This script aims to solve this problem by wrapping each file in a sub and thu...

TOBIB/Devel-Deanonymize-0.2.0 - 11 Feb 2022 11:37:31 UTC

Devel::Cover::Condition - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

Module for storing condition coverage information....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::Cover::Criterion - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

Abstract base class for all the coverage criteria....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::Cover::Statement - Code coverage metrics for Perl River stage three • 61 direct dependents • 117 total dependents

Module for storing statement coverage information....

PJCJ/Devel-Cover-1.40 - 30 Apr 2023 18:51:14 UTC

Devel::GraphVizProf - per-line Perl profiler (with graph output) River stage two • 29 direct dependents • 40 total dependents

NOTE: This module is a hack of Devel::SmallProf by Ted Ashton. It has been modified by Leon Brocard to produce output for GraphViz, but otherwise the only thing I have done is change the name. I hope to get my patches put into the main Devel::SmallPr...

ETJ/GraphViz-2.26 - 03 Mar 2023 18:32:44 UTC
60 results (0.035 seconds)