Skip to content

Commit

Permalink
Only test POD when RELEASE_TESTING.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Mates committed Jan 7, 2015
1 parent 42429e9 commit 4f12971
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions t/pod.t
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
BEGIN {
unless ( $ENV{RELEASE_TESTING} ) {
require Test::More;
Test::More::plan(
skip_all => 'these tests are for release candidate testing' );
}
}

use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
Expand Down

0 comments on commit 4f12971

Please sign in to comment.