comparison 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
comparison
equal deleted inserted replaced
0:30c6796bded8 1:bc8961a81af6
1 #!/usr/bin/perl -w
2
3 #
4 # Test that the POD we use in our modules is valid.
5 #
6
7
8 use strict;
9 use Test::More;
10 eval "use Test::Pod 1.00";
11 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
12
13 #
14 # Run the test(s).
15 #
16 my @poddirs = qw( bin );
17 all_pod_files_ok( all_pod_files( @poddirs ) );