Fix pointless warning from test
[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 ConfigLoader json xml
10     IOC conf myapp customised
11     undef env regex unary rethrow rethrows stringifies CPAN STDERR SIGCHLD baz
12     roadmap wishlist refactor refactored Runtime pluggable pluggability hoc apis
13     fastcgi nginx Lighttpd IIS middlewares backend IRC
14     ctx _application MyApp restarter httponly Utils stash's unescapes
15     dispatchtype dispatchtypes redispatch redispatching
16     CaptureArgs ChainedParent PathPart PathPrefix
17     BUILDARGS metaclass namespaces pre
18     filename tempname request's subdirectory ini uninstalled uppercased
19     wiki bitmask uri url urls dir hostname proxied http https IP SSL
20 ));
21 set_spell_cmd('aspell list -l en');
22 all_pod_files_spelling_ok();
23
24 done_testing();