1#!perl -T
2use strict;
3use warnings;
4
5=head1 TEST PURPOSE
6
7These tests that all POD is valid.
8
9=cut
10
11use Test::More;
12
13BEGIN { 
14  eval "use Test::Pod 1.00";
15  plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
16}
17
18all_pod_files_ok;
19