diff tests/pod.t @ 1:bc8961a81af6 release

2007-08-13 22:53:14 by steve Initial revision
author steve
date Mon, 13 Aug 2007 22:53:14 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/pod.t	Mon Aug 13 22:53:14 2007 +0000
@@ -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( bin );
+all_pod_files_ok( all_pod_files( @poddirs ) );