added more stop words to the spelling test to surprise false postive test failures
[catagits/Catalyst-Runtime.git] / t / author / spelling.t
CommitLineData
c0a8a4b8 1use strict;
2use warnings;
3use Test::More;
4use Test::Spelling;
5
6add_stopwords(qw(
cf8eab35 7 API CGI MVC PSGI Plack README SSI Starman XXXX URI htaccess middleware
8 mixins namespace psgi startup Deprecations catamoose cataplack linearize
9 subclasses subdirectories refactoring adaptors
8ad6fd58 10 undef env regex unary rethrow rethrows stringifies CPAN STDERR SIGCHLD baz
59e2fe94 11 roadmap wishlist refactor refactored Runtime pluggable pluggability hoc apis
8ad6fd58 12 fastcgi nginx Lighttpd IIS middlewares backend IRC
59e2fe94 13 ctx _application MyApp restarter httponly Utils stash's unescapes
c0a8a4b8 14 dispatchtype dispatchtypes redispatch redispatching
15 CaptureArgs ChainedParent PathPart PathPrefix
c2c8d3cb 16 BUILDARGS metaclass namespaces pre ARGV ReverseProxy
8ad6fd58 17 filename tempname request's subdirectory ini uninstalled uppercased
18 wiki bitmask uri url urls dir hostname proxied http https IP SSL
87b12a6e 19 inline INLINE plugins
e5cd6cc0 20 FastCGI Stringifies Rethrows DispatchType Wishlist Refactor ROADMAP HTTPS Unescapes Restarter Nginx Refactored
73cfe9ca 21 Andreas
22 Ashton
23 Axel
24 Balint
25 Belka
26 Brocard
27 Caelum
28 Cassidy
29 Dagfinn
30 Danijel
31 Dhanani
32 Dhaval
33 Diment
8d4a01a2 34 Doran
73cfe9ca 35 Edvinsson
36 Florian
37 Geoff
38 Grundman
39 Hartmaier
40 Hawes
41 Ilmari
42 Johan
43 Kamholz
44 Kiefer
45 Kieren
46 Kitover
47 Kogman
48 Kostyuk
49 Kubb
50 Lammel
51 Lindstrom
52 Mannsåker
53 Marienborg
54 Marrandi
55 McWhirter
56 Milicevic
57 Miyagawa
58 Montes
59 Naughton
60 Oleg
61 Ragwitz
62 Ramberg
63 Rasnita
64 Reis
65 Riedel
66 Rockway
67 Roditi
68 Rodland
69 Ruthven
70 Sascha
71 Schutz
72 Sedlacek
73 Sheidlower
74 SpiceMan
75 Szilakszi
76 Tatsuhiko
77 Ulf
78 Vilain
79 Viljo
80 Wardley
81 Westermann
82 Willert
83 Yuval
84 abraxxa
85 abw
86 andyg
87 audreyt
88 bricas
89 chansen
90 dhoss
91 dkubb
92 dwc
93 esskar
94 fREW
95 fireartist
96 frew
97 gabb
98 groditi
99 hobbs
100 ilmari
101 jcamacho
102 jhannah
103 jon
104 konobi
105 marcus
106 miyagawa
107 mst
108 naughton
109 ningu
110 nothingmuch
111 numa
112 obra
113 phaylon
114 rafl
115 rainboxx
116 sri
117 szbalint
118 willert
119 wreis
c0a8a4b8 120));
9977ef94 121set_spell_cmd('aspell list -l en');
c0a8a4b8 122all_pod_files_spelling_ok();
123
124done_testing();