]> git.saurik.com Git - redis.git/blob - client-libraries/perl/t/pod.t
FLUSHALL/FLUSHDB no longer sync on disk. Just increment the dirty counter by the...
[redis.git] / client-libraries / perl / t / pod.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5 use Test::More;
6
7 # Ensure a recent version of Test::Pod
8 my $min_tp = 1.22;
9 eval "use Test::Pod $min_tp";
10 plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
11
12 all_pod_files_ok();