Add a new name to the list in stopwords, to fix t/author/spelling.t
[catagits/Catalyst-Runtime.git] / t / author / spelling.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use Test::Spelling;
5
6 add_stopwords(qw(
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
10     undef env regex unary rethrow rethrows stringifies CPAN STDERR SIGCHLD baz
11     roadmap wishlist refactor refactored Runtime pluggable pluggability hoc apis
12     fastcgi nginx Lighttpd IIS middlewares backend IRC
13     ctx _application MyApp restarter httponly Utils stash's unescapes
14     dispatchtype dispatchtypes redispatch redispatching
15     CaptureArgs ChainedParent PathPart PathPrefix
16     BUILDARGS metaclass namespaces pre ARGV ReverseProxy
17     filename tempname request's subdirectory ini uninstalled uppercased
18     wiki bitmask uri url urls dir hostname proxied http https IP SSL
19     inline INLINE plugins cpanfile
20     FastCGI Stringifies Rethrows DispatchType Wishlist Refactor ROADMAP HTTPS Unescapes Restarter Nginx Refactored
21     ActionClass LocalRegex LocalRegexp MyAction metadata cometd io psgix websockets
22     UTF async codebase dev filenames params MyMiddleware
23     JSON POSTed RESTful performant subref actionrole
24     chunked chunking codewise distingush equivilent plack Javascript
25     ConfigLoader getline
26     Andreas
27     Ashton
28     Axel
29     Balint
30     Belka
31     Brocard
32     Caelum
33     Cassidy
34     Dagfinn
35     Danijel
36     Dhanani
37     Dhaval
38     Diment
39     Doran
40     Edvinsson
41     Florian
42     Geoff
43     Grundman
44     Hartmaier
45     Hawes
46     Ilmari
47     Johan
48     Kamholz
49     Kiefer
50     Kieren
51     Kitover
52     Kogman
53     Kostyuk
54     Kubb
55     Lammel
56     Lindstrom
57     MannsÃ¥ker
58     Marienborg
59     Marrandi
60     McWhirter
61     Milicevic
62     Miyagawa
63     Montes
64     Naughton
65     Oleg
66     Ragwitz
67     Ramberg
68     Rasnita
69     Reis
70     Riedel
71     Rockway
72     Roditi
73     Rodland
74     Ruthven
75     Sascha
76     Schutz
77     Sedlacek
78     Sheidlower
79     SpiceMan
80     Styn
81     Szilakszi
82     Tatsuhiko
83     Ulf
84     Upasana
85     Vilain
86     Viljo
87     Wardley
88     Westermann
89     Willert
90     Yuval
91     abraxxa
92     abw
93     andyg
94     audreyt
95     bricas
96     chansen
97     dhoss
98     dkubb
99     dwc
100     esskar
101     fREW
102     fireartist
103     frew
104     gabb
105     groditi
106     hobbs
107     ilmari
108     jcamacho
109     jhannah
110     jon
111     konobi
112     marcus
113     mgrimes
114     miyagawa
115     mst
116     naughton
117     ningu
118     nothingmuch
119     numa
120     obra
121     phaylon
122     rafl
123     rainboxx
124     sri
125     szbalint
126     vanstyn
127     willert
128     wreis
129 ));
130 set_spell_cmd('aspell list -l en');
131 all_pod_files_spelling_ok();
132
133 done_testing();