Spelling skips
[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
20 ));
21 set_spell_cmd('aspell list -l en');
22 all_pod_files_spelling_ok();
23
24 done_testing();