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