fixed the remaining spelling errors + improved some wording in the process
[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     undef env regex unary rethrow rethrows stringifies CPAN STDERR SIGCHLD baz
8     roadmap wishlist refactor refactored Runtime pluggable pluggability hoc apis
9     fastcgi nginx Lighttpd IIS middlewares backend IRC
10     ctx _application MyApp restarter httponly Utils stash's unescapes
11     dispatchtype dispatchtypes redispatch redispatching
12     CaptureArgs ChainedParent PathPart PathPrefix
13     BUILDARGS metaclass namespaces
14     filename tempname request's subdirectory ini uninstalled uppercased
15     wiki bitmask uri url urls dir hostname proxied http https IP SSL
16 ));
17 set_spell_cmd('aspell list -l en');
18 all_pod_files_spelling_ok();
19
20 done_testing();