Load order _does_ matter, and this is the case for all MX modules
[gitmo/MooseX-SemiAffordanceAccessor.git] / t / pod-coverage.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5
6 plan skip_all => 'This test is only run for the module author'
7     unless -d '.git' || $ENV{IS_MAINTAINER};
8
9 eval "use Test::Pod::Coverage 1.04";
10 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
11     if $@;
12
13 all_pod_coverage_ok( { trustme => [qr/^init_meta$/] } );