Whitespace trim tests
[gitmo/MooseX-Storage.git] / t / pod-coverage.t
1 #!perl
2 use Test::More;
3
4 plan skip_all => "set env var RELEASE_TESTING=1 to run these"
5   unless $ENV{RELEASE_TESTING};
6
7 eval "use Test::Pod::Coverage 1.08";
8 warn $@ if $@;
9 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
10
11 my @modules = grep { ! /::Traits?::/ } all_modules();
12
13 plan tests => scalar(@modules);
14
15 foreach my $module (@modules) {
16     pod_coverage_ok($module);
17 }
18