Move the require './test.pl' to the end of t/comp/hints.t
[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;
31chdir '..';
32my @files;
33my $manifest = 'MANIFEST';
34
35open my $m, '<', $manifest or die "Can't open '$manifest': $!";
36
37while (<$m>) {
38 chomp;
39 next unless /\s/; # Ignore lines without whitespace (i.e., filename only)
40 my ($file, $separator) = /^(\S+)(\s+)/;
41 next if $file =~ /^cpan\//;
42 next unless ($file =~ /\.(?:pm|pod|pl)$/);
43 push @files, $file;
a67b1afa 44};
cc4c9faa 45@files = sort @files; # so we get consistent results
a67b1afa 46
47sub pod_ok {
48 my ($filename) = @_;
49 local @My::Pod::Checker::errors;
50 my $checker = My::Pod::Checker->new(-quiet => 1);
51 $checker->parse_from_file($filename, undef);
52 my $error_count = $checker->num_errors();
53
f7b649f0 54 if(! ok($error_count <= 0, "POD of $filename")) {
a67b1afa 55 diag( "'$filename' contains POD errors" );
f7b649f0 56 diag(sprintf "%s %s: %s at line %s",
57 $_->{-severity}, $_->{-file}, $_->{-msg}, $_->{-line})
a67b1afa 58 for @My::Pod::Checker::errors;
59 };
60};
61
f7b649f0 62plan (tests => scalar @files);
a67b1afa 63
64pod_ok $_
65 for @files;
66
67__DATA__
68lib/
69ext/
70pod/
71AUTHORS
72Changes
73INSTALL
74README*
9dab8649 75*.pod