view tests/pod.t @ 267:a85c9babe70f

Added tag release-3.0 for changeset 7b0e9663a474
author Steve Kemp <steve@steve.org.uk>
date Wed, 23 Jul 2008 18:55:04 +0100
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 ) );