Add init_meta to trustme list
[gitmo/MooseX-StrictConstructor.git] / xt / pod-coverage.t
CommitLineData
2a9c7c38 1use strict;
2use warnings;
3
4use Test::More;
5
6eval "use Test::Pod::Coverage 1.04";
7plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
8 if $@;
9
94e023f1 10all_pod_coverage_ok( { trustme => [ qr/^init_meta$/ ] } );