view tests/pod.t @ 49:0c4f7753c9d3

2007-10-10 21:31:32 by steve Move the month names somewhere obvious.
author steve
date Wed, 10 Oct 2007 21:31:32 +0000
parents bc8961a81af6
children
line wrap: on
line source

#!/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( bin );
all_pod_files_ok( all_pod_files( @poddirs ) );