]> git.saurik.com Git - redis.git/blame - client-libraries/perl/t/pod.t
doc update
[redis.git] / client-libraries / perl / t / pod.t
CommitLineData
f78fd11b 1#!perl -T
2
3use strict;
4use warnings;
5use Test::More;
6
7# Ensure a recent version of Test::Pod
8my $min_tp = 1.22;
9eval "use Test::Pod $min_tp";
10plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
11
12all_pod_files_ok();