From: Alexander Hartmaier Date: Fri, 29 Jul 2011 13:50:14 +0000 (+0200) Subject: added spelling author test X-Git-Tag: 5.90005~4^2~10^2~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=576de1063fbf94e8233c4794c4b0728101c50952 added spelling author test --- diff --git a/Makefile.PL b/Makefile.PL index 63a99cd..9b7b1ce 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -88,6 +88,7 @@ author_requires(map {; $_ => 0 } qw( Test::NoTabs Test::Pod Test::Pod::Coverage + Test::Spelling Pod::Coverage::TrustPod )); diff --git a/t/author/spelling.t b/t/author/spelling.t new file mode 100644 index 0000000..f503ff5 --- /dev/null +++ b/t/author/spelling.t @@ -0,0 +1,20 @@ +use strict; +use warnings; +use Test::More; +use Test::Spelling; + +add_stopwords(qw( + undef env regex rethrow rethrows stringifies CPAN STDERR SIGCHLD + roadmap wishlist refactor refactored runtime pluggable pluggability hoc apis + fastcgi nginx IIS middlewares + ctx _application MyApp restarter httponly Utils + dispatchtype dispatchtypes redispatch redispatching + CaptureArgs ChainedParent PathPart PathPrefix + BUILDARGS metaclass + filename tempname + wiki bitmask uri url urls dir hostname http https IP SSL +)); +set_spell_cmd('aspell list -l en_GB'); +all_pod_files_spelling_ok(); + +done_testing();