-
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
7a31b20
commit 8d4386c
Showing
1 changed file
with
4 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
#!perl -w | ||
#!/usr/bin/perl -w | ||
|
||
use strict; | ||
use warnings; | ||
|
||
use Test::Most; | ||
|
||
if(not $ENV{RELEASE_TESTING}) { | ||
if(!$ENV{'AUTHOR_TESTING'}) { | ||
plan(skip_all => 'Author tests not required for installation'); | ||
} | ||
|
||
eval "use Test::ConsistentVersion"; | ||
eval 'use Test::ConsistentVersion'; | ||
|
||
plan skip_all => "Test::ConsistentVersion required for checking versions" if $@; | ||
plan(skip_all => 'Test::ConsistentVersion required for checking versions') if $@; | ||
|
||
Test::ConsistentVersion::check_consistent_versions(); |