aboutsummaryrefslogtreecommitdiffstats
path: root/t/pod.t
blob: 9a60e73240225bc01eb0e3967102357ff8add1cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;
use English qw(-no_match_vars);

eval { require Test::Pod; };
plan(skip_all => 'Test::Pod required') if $EVAL_ERROR;

Test::Pod->import();

all_pod_files_ok();