diff --git a/t/cv.t b/t/cv.t index 4504143..f2dc4c0 100644 --- a/t/cv.t +++ b/t/cv.t @@ -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();