Package perl-Test-Pod-Coverage: Information

    Source package: perl-Test-Pod-Coverage
    Version: 1.10-alt1
    Build time:  Apr 1, 2018, 08:03 PM
    Category: Development/Perl
    Report package bug
    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 );

    List of rpms provided by this srpm:
    perl-Test-Pod-Coverage (noarch)

    Maintainer: Vitaly Lipatov

    List of contributors:
    Igor Vlasenko
    Vitaly Lipatov

      1. perl-Pod-Coverage
      2. perl-Test-Pod

    Last changed


    July 25, 2014 Igor Vlasenko 1.10-alt1
    - automated CPAN update
    Nov. 22, 2010 Igor Vlasenko 1.08-alt3.1
    - repair after perl 5.12 upgrade using girar-nmu
    Sept. 6, 2008 Vitaly Lipatov 1.08-alt3
    - fix directory ownership violation