From 88909914ca7f1055edcf2978563987edd1682d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20D=C9=AA=E1=B4=87=E1=B4=84=E1=B4=8B=E1=B4=8F?= =?UTF-8?q?=E1=B4=A1=20=E8=BF=AA=E6=8B=89=E6=96=AF?= Date: Sun, 13 Mar 2011 01:29:00 +0100 Subject: spelling --- t/spelling.t | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 t/spelling.t (limited to 't') diff --git a/t/spelling.t b/t/spelling.t new file mode 100644 index 0000000..7947839 --- /dev/null +++ b/t/spelling.t @@ -0,0 +1,52 @@ +use Test::Spelling; +my @stopwords; +for () { + chomp; + push @stopwords, $_ + unless /\A (?: \# | \s* \z)/msx; # skip comments, whitespace +} + +add_stopwords(@stopwords); +set_spell_cmd('aspell list -l en'); +all_pod_files_spelling_ok('.'); + +__DATA__ +## personal names +cuny +damien +franck +François +grunwald +leroux +Perrad + +## proper names + +## SPORE + +## computerese +API +CGI +JSGI +JSON +PSGI +URL's + +## other jargon + +## neologisms + +## compound + +## slang + +## things that should be in the dictionary, but are not +changelogs +metadata +middleware +middlewares +request's +undecoded +workflow + +## misspelt on purpose -- cgit v1.2.3