Deal with "\c{", and its kin
[p5sagit/p5-mst-13.2.git] / t / porting / podcheck.t
CommitLineData
a67b1afa 1#!/usr/bin/perl -w
f7b649f0 2
3require './test.pl';
a67b1afa 4
5use strict;
6
a67b1afa 7{
8 package My::Pod::Checker;
9 use strict;
10 use parent 'Pod::Checker';
11
12 use vars '@errors'; # a bad, bad hack!
13
14 sub poderror {
15 my $self = shift;
16 my $opts;
17 if (ref $_[0]) {
18 $opts = shift;
19 };
20 ++($self->{_NUM_ERRORS})
21 if(!$opts || ($opts->{-severity} && $opts->{-severity} eq 'ERROR'));
22 ++($self->{_NUM_WARNINGS})
23 if(!$opts || ($opts->{-severity} && $opts->{-severity} eq 'WARNING'));
24 push @errors, $opts;
25 };
26}
27
69f6a9a1 28
29use strict;
30use File::Spec;
f1b865f4 31s{^\.\./lib$}{lib} for @INC;
69f6a9a1 32chdir '..';
33my @files;
34my $manifest = 'MANIFEST';
35
36open my $m, '<', $manifest or die "Can't open '$manifest': $!";
37
38while (<$m>) {
39 chomp;
40 next unless /\s/; # Ignore lines without whitespace (i.e., filename only)
41 my ($file, $separator) = /^(\S+)(\s+)/;
42 next if $file =~ /^cpan\//;
43 next unless ($file =~ /\.(?:pm|pod|pl)$/);
44 push @files, $file;
a67b1afa 45};
cc4c9faa 46@files = sort @files; # so we get consistent results
a67b1afa 47
48sub pod_ok {
49 my ($filename) = @_;
50 local @My::Pod::Checker::errors;
51 my $checker = My::Pod::Checker->new(-quiet => 1);
52 $checker->parse_from_file($filename, undef);
53 my $error_count = $checker->num_errors();
54
f7b649f0 55 if(! ok($error_count <= 0, "POD of $filename")) {
a67b1afa 56 diag( "'$filename' contains POD errors" );
f7b649f0 57 diag(sprintf "%s %s: %s at line %s",
58 $_->{-severity}, $_->{-file}, $_->{-msg}, $_->{-line})
a67b1afa 59 for @My::Pod::Checker::errors;
60 };
61};
62
f7b649f0 63plan (tests => scalar @files);
a67b1afa 64
65pod_ok $_
66 for @files;
67
68__DATA__
69lib/
70ext/
71pod/
72AUTHORS
73Changes
74INSTALL
75README*
9dab8649 76*.pod