Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37512979
en ru br
ALT Linux repos
S:1.10-alt1
5.0: 1.08-alt3
4.1: 1.08-alt2
4.0: 1.08-alt2
3.0:
+backports:1.08-alt0.M30

Group :: Development/Perl
RPM: perl-Test-Pod-Coverage

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Current version: 1.10-alt1
Build date: 25 july 2014, 08:08 ( 508.8 weeks ago )
Size: 12.39 Kb

Home page:   http://www.cpan.org

License: Artistic
Summary: Test-Pod-Coverage - Check for pod coverage in your distribution
Description:

Checks for POD coverage in files for your distribution.

   use Test::Pod::Coverage tests=>1;
   pod_coverage_ok( "Foo::Bar", "Foo::Bar is covered" );

Can also be called with Pod::Coverage parms.

   use Test::Pod::Coverage tests=>1;
   pod_coverage_ok(
       "Foo::Bar",
       { also_private => [ qr/^[A-Z_]+$/ ], },
       "Foo::Bar, with all-caps functions as privates",
   );

The Pod::Coverage parms are also useful for subclasses that don't
re-document the parent class's methods.  Here's an example from
Mail::SRS.

   pod_coverage_ok( "Mail::SRS" ); # No exceptions

   
   my $trustme = { trustme => [qr/^(new|parse|compile)$/] };
   pod_coverage_ok( "Mail::SRS::DB", $trustme );
   pod_coverage_ok( "Mail::SRS::Guarded", $trustme );
   pod_coverage_ok( "Mail::SRS::Reversable", $trustme );
   pod_coverage_ok( "Mail::SRS::Shortcut", $trustme );

Current maintainer: Vitaly Lipatov

List of contributors

List of rpms provided by this srpm:

  • perl-Test-Pod-Coverage
ACL:
     
    design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    current maintainer: Michael Shigorin