1
0
mirror of synced 2026-01-14 15:35:18 +00:00
steve 47c7161386 2007-09-04 20:30:25 by steve
Added new tests for our modular code.
2007-09-04 20:30:25 +00:00

20 lines
320 B
Perl
Executable File

#!/usr/bin/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();