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

use strict;
use Test::More;

plan skip_all => "Enable DEVEL_TESTS environent variable"
  unless ($ENV{DEVEL_TESTS});

eval "use Test::Pod 1.00";

plan skip_all => "Test::Pod 1.00 required" if $@;

my @poddirs = qw( blib  );

all_pod_files_ok( all_pod_files( @poddirs ) );