Silence warnings resulting from incomplete can() overrides hiding
[p5sagit/Class-Accessor-Grouped.git] / t / pod_coverage.t
CommitLineData
e1eaa4ae 1use strict;
2use warnings;
3
4BEGIN {
5 use lib 't/lib';
6 use Test::More;
7
8 plan skip_all => 'set TEST_AUTHOR to enable this test' unless $ENV{TEST_AUTHOR};
9
10 eval 'use Test::Pod::Coverage 1.04';
11 plan skip_all => 'Test::Pod::Coverage 1.04' if $@;
12
13 eval 'use Pod::Coverage 0.14';
14 plan skip_all => 'Pod::Coverage 0.14 not installed' if $@;
15};
16
17my $trustme = {
18 trustme => [qr/^(g|s)et_component_class$/]
19};
20
21all_pod_coverage_ok($trustme);