Skip to content

Commit

Permalink
made pod tests author only
Browse files Browse the repository at this point in the history
  • Loading branch information
hashbangperl committed Feb 28, 2013
1 parent 40d1f0c commit 221d2ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions t/pod-coverage.t
Expand Up @@ -4,6 +4,11 @@ use strict;
use warnings FATAL => 'all';
use Test::More;


unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}

# Ensure a recent version of Test::Pod::Coverage
my $min_tpc = 1.08;
eval "use Test::Pod::Coverage $min_tpc";
Expand Down
4 changes: 4 additions & 0 deletions t/pod.t
Expand Up @@ -4,6 +4,10 @@ use strict;
use warnings FATAL => 'all';
use Test::More;

unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}

# Ensure a recent version of Test::Pod
my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
Expand Down

0 comments on commit 221d2ce

Please sign in to comment.