diff options
author | 2013-03-25 20:06:16 +0000 | |
---|---|---|
committer | 2013-03-25 20:06:16 +0000 | |
commit | 898184e3e61f9129feb5978fad5a8c6865f00b92 (patch) | |
tree | 56f32aefc1eed60b534611007c7856f82697a205 /gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t | |
parent | PGSHIFT -> PAGE_SHIFT (diff) | |
download | wireguard-openbsd-898184e3e61f9129feb5978fad5a8c6865f00b92.tar.xz wireguard-openbsd-898184e3e61f9129feb5978fad5a8c6865f00b92.zip |
import perl 5.16.3 from CPAN - worked on by Andrew Fresh and myself
Diffstat (limited to 'gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t')
-rw-r--r-- | gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t b/gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t new file mode 100644 index 00000000000..3dbee4f436b --- /dev/null +++ b/gnu/usr.bin/perl/cpan/Pod-Perldoc/t/pod.t @@ -0,0 +1,11 @@ +use strict; +use warnings; +use Test::More; + +unless ( $ENV{RELEASE_TESTING} ) { + plan skip_all => 'Pod tests not required for installation.'; +} + +eval "use Test::Pod 1.22"; +plan skip_all => 'Test::Pod 1.22 or higher not installed.' if $@; +all_pod_files_ok(); |