Guest User

Untitled

a guest
Jun 19th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!perl
  2.  
  3. BEGIN {
  4. unless ($ENV{RELEASE_TESTING}) {
  5. require Test::More;
  6. Test::More::plan(skip_all => 'these tests are for release candidate testing');
  7. }
  8. }
  9.  
  10. use Test::More;
  11.  
  12. eval "use Test::Pod 1.41";
  13. plan skip_all => "Test::Pod 1.41 required for testing POD" if $@;
  14.  
  15. all_pod_files_ok();
Add Comment
Please, Sign In to add comment