1
0
mirror of synced 2026-02-24 15:37:48 +00:00
Files
xen-tools.xen-tools/t/pod.t
steve eb4a542c4a 2007-09-01 19:23:09 by steve
Moved tests into ./t & updated Makefile to cope with new location.
2007-09-01 19:23:10 +00:00

18 lines
297 B
Perl
Executable File

#!/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 ) );