1#!perl
2
3BEGIN {
4  unless ($ENV{RELEASE_TESTING}) {
5    require Test::More;
6    Test::More::plan(skip_all => 'these tests are for release candidate testing');
7  }
8}
9
10
11use Test::More;
12
13eval "use Pod::Wordlist::hanekomu";
14plan skip_all => "Pod::Wordlist:hanekomu required for testing POD spelling"
15  if $@;
16
17eval "use Test::Spelling";
18plan skip_all => "Test::Spelling required for testing POD spelling"
19  if $@;
20
21all_pod_files_spelling_ok('lib');
22