-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use AUTHOR_TESTING instead of RELEASE_TESTING
- Loading branch information
1 parent
966b4e0
commit 64f75cb
Showing
3 changed files
with
17 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!perl -wT | ||
|
||
use strict; | ||
use warnings; | ||
use Test::Most; | ||
use Test::Needs 'Test::Pod::Snippets'; | ||
|
||
if($ENV{'AUTHOR_TESTING'}) { | ||
my @modules = qw/ Geo::Coder::List /; | ||
Test::Pod::Snippets->import(); | ||
Test::Pod::Snippets->new()->runtest(module => $_, testgroup => 1) for @modules; | ||
|
||
done_testing(); | ||
} else { | ||
plan(skip_all => 'Author tests not required for installation'); | ||
} |
This file was deleted.
Oops, something went wrong.