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