1
0
mirror of synced 2026-02-03 23:02:42 +00:00

2006-03-04 23:31:20 by steve

Added to the repository, test the pod we make.
This commit is contained in:
steve
2006-03-04 23:31:20 +00:00
parent 49fbdf3a35
commit 7381fb7106

17
tests/pod.t Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/perl -w
#
# Test that the POD we use in our modules is valid.
#
use strict;
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
#
# Run the test(s).
#
my @poddirs = qw( . );
all_pod_files_ok( all_pod_files( @poddirs ) );