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);
79 local %Pod::Wordlist::Wordlist = %Pod::Wordlist::Wordlist;
80 for my $stop (@stopwords) {
81 $Pod::Wordlist::Wordlist{$stop} = 1;
85 # https://bugs.launchpad.net/ubuntu/+source/aspell/+bug/71322
89 my $check_fh = File::Temp->new;
90 my $check_filename = $check_fh->filename;
92 or die "Cannot open $file for spell check: $!\n";
93 Pod::Spell->new->parse_from_filehandle(\*POD, $check_fh);
96 my @out = `aspell list <$check_filename`;
97 unless (ok(@out == 0, "spell check $file")) {
101 open my $fh, "<", $check_filename;