4 use ExtUtils::Manifest qw(maniread);
6 eval "use Pod::Spell 1.01";
7 plan skip_all => "Pod::Spell 1.01 required for spellchecking POD" if $@;
8 my $manifest = maniread();
9 my @pod = sort grep !/^inc/ && /\.(pm|pl|pod|PL)$/, keys %$manifest;
10 plan tests => scalar(@pod);
59 local %Pod::Wordlist::Wordlist = %Pod::Wordlist::Wordlist;
60 for my $stop (@stopwords) {
61 $Pod::Wordlist::Wordlist{$stop} = 1;
65 # https://bugs.launchpad.net/ubuntu/+source/aspell/+bug/71322
69 my $check_fh = File::Temp->new;
70 my $check_filename = $check_fh->filename;
72 or die "Cannot open $file for spell check: $!\n";
73 Pod::Spell->new->parse_from_filehandle(\*POD, $check_fh);
76 my @out = `aspell list <$check_filename`;
77 unless (ok(@out == 0, "spell check $file")) {
81 open my $fh, "<", $check_filename;