skip xml failure tests if XML::LibXML < 1.59 is installed, it seems to parse anything...
[p5sagit/Config-Any.git] / t / pod-coverage.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 eval "use Test::Pod::Coverage 1.04";
6
7 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage"
8     if $@;
9 all_pod_coverage_ok();