modernize tests and require Test::More 0.88
[gitmo/MooseX-StrictConstructor.git] / t / pod-coverage.t
CommitLineData
f7dc1645 1use strict;
32726d88 2use warnings;
3
4use Test::More;
5
32726d88 6plan skip_all => 'This test is only run for the module author'
7 unless -d '.svn' || $ENV{IS_MAINTAINER};
8
9eval "use Test::Pod::Coverage 1.04";
10plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
11 if $@;
12
5a0d4921 13all_pod_coverage_ok( { trustme => [qr/init_meta/] } );