Revision 4b980cbbc373295eec486650d017c44792e39adb authored by Kim Rutherford on 29 May 2012, 12:03:05 UTC, committed by Kim Rutherford on 29 May 2012, 12:03:05 UTC
1 parent e8b5313
Raw File
03_podcoverage.t
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

eval "use Test::Pod::Coverage 1.04";
plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};

all_pod_coverage_ok();
back to top