2 # This file is part of Padre::Plugin::Nopaste.
3 # Copyright (c) 2009 Jerome Quelin, all rights reserved.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the same terms as Perl itself.
15 # Ensure a recent version of Test::Pod::Coverage
17 eval "use Test::Pod::Coverage $min_tpc";
18 plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
21 # Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
22 # but older versions don't recognize some common documentation styles
24 eval "use Pod::Coverage $min_pc";
25 plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
28 all_pod_coverage_ok();