From 7381fb710658eefe9be8be309173f54da62277a9 Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 4 Mar 2006 23:31:20 +0000 Subject: [PATCH] 2006-03-04 23:31:20 by steve Added to the repository, test the pod we make. --- tests/pod.t | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/pod.t diff --git a/tests/pod.t b/tests/pod.t new file mode 100644 index 0000000..d0b3962 --- /dev/null +++ b/tests/pod.t @@ -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 ) );