Name : perl-Test-Pod
| |
Version : 1.08
| Vendor : Andy Lester C < andy_petdance_com>
|
Release : 1
| Date : 2004-03-04 15:13:20
|
Group : Applications/CPAN
| Source RPM : perl-Test-Pod-1.08-1.src.rpm
|
Size : 0.01 MB
| |
Packager : Peter Pramberger < peter_pramberger_1012surf_net>
| |
Summary : Test-Pod - check for POD errors in files
|
Description :
C< Test::Pod> lets you check the validity of a POD file, and report its results in standard C< Test::Simple> fashion. use Test::Pod; plan tests => $num_tests; pod_file_ok( $file, \"Valid POD file\" ); Module authors can include the following in a F< t/pod.t> file and have C< Test::Pod> automatically find and check all POD files in a module distribution: use Test::More; eval \"use Test::Pod 1.00\"; plan skip_all => \"Test::Pod 1.00 required for testing POD\" if $AATT; all_pod_files_ok(); You can also specify a list of files to check, using the C< all_pod_files()> function supplied: use strict; use Test::More; eval \"use Test::Pod 1.00\"; plan skip_all => \"Test::Pod 1.00 required for testing POD\" if $AATT; my AATTpoddirs = qw( blib script ); all_pod_files_ok( all_pod_files( AATTpoddirs ) ); Or even (if you\'re running under L< Apache::Test>): use strict; use Test::More; eval \"use Test::Pod 1.00\"; plan skip_all => \"Test::Pod 1.00 required for testing POD\" if $AATT; my AATTpoddirs = qw( blib script ); use File::Spec::Functions qw( catdir updir ); all_pod_files_ok( all_pod_files( map { catdir updir, $_ } AATTpoddirs ) );
|
RPM found in directory: /packages/linux-pbone/archive/ftp.pramberger.at/systems/linux/contrib/rh73/i386 |