aboutsummaryrefslogtreecommitdiffstats
path: root/t/pod.t
blob: eec437254ccd7720524677efda400152b15549af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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();