Codebase list libtest-pod-perl / 6af65b9
Renaming Paul's new files. Getting ready for 1.40 release. Andy Lester 14 years ago
5 changed file(s) with 12 addition(s) and 14 deletion(s). Raw diff Collapse all Expand all
00 Changes
1 Makefile.PL
12 MANIFEST
2 Makefile.PL
33 Pod.pm
44
55 t/00-load.t
1010 t/good.t
1111 t/item-ordering.pod
1212 t/item-ordering.t
13 t/link.pod
14 t/link.t
1315 t/load.t
1416 t/missing-file.t
1517 t/pod.t
2224 t/spaced-directives.t
2325 t/unknown-directive.pod
2426 t/unknown-directive.t
25 t/a-href-L.pod
26 t/a-href-L.t
27
28 META.yml Module meta-data (added by MakeMaker)
44 'NAME' => 'Test::Pod',
55 'VERSION_FROM' => 'Pod.pm',
66 'PREREQ_PM' => {
7 'Pod::Simple' => '3.07', # required for t/a-href-L.t apparently
7 'Pod::Simple' => '3.07', # required for t/link.t
88 'Test::More' => '0.62',
99 'Test::Builder::Tester' => '1.02',
1010 'File::Spec' => 0,
4747
4848 =head1 VERSION
4949
50 Version 1.29_01
51
52 =cut
53
54 use vars qw( $VERSION );
55 $VERSION = '1.29_01';
50 Version 1.40
51
52 =cut
53
54 our $VERSION = '1.40';
5655
5756 =head1 SYNOPSIS
5857
99
1010 ... test text, please ignore
1111
12 Invalid according to L<perlpod/Formatting Codes>:
12 Invalid according to L<perlpod/Formatting Codes>:
1313 L<Paul's Perl Modules|http://voltar.org/perl>
1414
1515 This should be OK:
00 #!perl -T
11
22 use strict;
3 use warnings;
34
45 use Test::Builder::Tester tests => 2;
56 use Test::More;
89 use_ok( 'Test::Pod' );
910 }
1011
11 my $file = 't/a-href-L.pod';
12 my $file = 't/link.pod';
1213 test_out( "not ok 1 - POD test for $file" );
1314 pod_file_ok( $file );
1415 test_fail(-1);