summaryrefslogtreecommitdiffstats
path: root/perl/t/pod.t
blob: bc0af3407a1ad51722b8b285cbd473141a75697f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl pod.t'

use warnings;
use strict;
use Test::More;

eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD"
  if $@;

all_pod_files_ok();