]> Dogcows Code - chaz/chatty/blob - 03podcoverage.t
6ddc5c6b6c76b19fc7bedce5efe22745cde01110
[chaz/chatty] / 03podcoverage.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4 use Test::More;
5
6 plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
7
8 eval "use Test::Pod::Coverage 1.04";
9 plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
10
11 eval "use Pod::Coverage 0.20";
12 plan skip_all => 'Pod::Coverage 0.20 required' if $@;
13
14 all_pod_coverage_ok();
This page took 0.046567 seconds and 3 git commands to generate.