NAME

Test::Pod::Coverage - Check for pod coverage in your distribution.

VERSION

Version 0.01

$Header: /home/cvs/test-pod-coverage/Coverage.pm,v 1.4 2004/01/04 06:21:56 andy Exp $

SYNOPSIS

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 a custom Pod::Coverage object, if a default one doesn't work for you.

    use Test::Pod::Coverage tests=>1;
    my $pc =
	Pod::Coverage->new(
	    package => "Foo::Bar",
	    also_private => [ qr/^FOO_/ ], # all FOO_* are private
	);
    pod_coverage_ok( $pc, "Foo::Bar is covered" );

FUNCTIONS

pod_coverage_ok( $module, $msg )

Checks that the POD code in $module has proper POD coverage.

AUTHOR

Written by Andy Lester, <andy@petdance.com>.

COPYRIGHT

Copyright 2004, Andy Lester, All Rights Reserved.

You may use, modify, and distribute this package under the same terms as Perl itself.