The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Test::More;
BEGIN {
    eval q[use Test::Spelling];
    plan(skip_all => "Test::Spelling required for testing spelling") if $@;
}

my @stopwords = split /\n/, <<'...';
Tokuhiro
Matsuno
IP
ip
yaml
kensiro
sinsu
Miyagawa
Tatsuhiko
http
TODO
referer
DoCoMo
UA
XHTML
DoCoMo's
Firefox
orz
ControlPanel
Moxy
moxy
Moxy's
plugins
QRCode
Subno
EZweb
Kan
Fushihara
ezweb
img
GPS
gps
Plagger
UserAgent
pm
qpsmtpd
GhostScript
ImageMagick
debian
lha
lzh
svn
CookieCutter
DisableTableTag
FlashUseImgTag
HTMLWidth
HTTP
HTTPEnv
Pictogram
RefererCutter
ShowHTTPHeaders
UserAgentSwitcher
UserID
WILLCOM
XMLisHTML
au
localsrc
...

add_stopwords(@stopwords);
all_pod_files_spelling_ok;