1
0
mirror of synced 2026-01-13 15:17:30 +00:00

20 lines
311 B
Perl
Executable File

#!perl
#
# Test that the POD we use in our modules is valid.
#
use strict;
use warnings;
use Test::More;
# Ensure a recent version of Test::Pod
my $min_tp = 1.08;
eval "use Test::Pod $min_tp";
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
#
# Run the test(s).
#
all_pod_files_ok();