Use sd for issue tracking
[p5sagit/Promulger.git] / t / pod.t
1 #!/usr/bin/perl
2 use strictures 1;
3 use autodie;
4 use Test::Most;
5
6 # Ensure a recent version of Test::Pod
7 my $min_tp = 1.22;
8 eval "use Test::Pod $min_tp";
9 plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
10
11 all_pod_files_ok();