10 lines
246 B
Perl
10 lines
246 B
Perl
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
|
|
eval "use Test::Pod 1.14";
|
|
plan skip_all => 'Test::Pod 1.14 required' if $@;
|
|
plan skip_all => 'Author test. Set $ENV{TEST_AUTHOR} to a true value to run.' unless $ENV{TEST_AUTHOR};
|
|
|
|
all_pod_files_ok();
|