10 lines
290 B
Perl
10 lines
290 B
Perl
|
use strict;
|
||
|
use warnings;
|
||
|
use Test::More;
|
||
|
|
||
|
plan skip_all => 'Author tests skipped. Set $ENV{RELEASE_TESTING} to run.'
|
||
|
unless $ENV{RELEASE_TESTING};
|
||
|
plan skip_all => 'Test::CPAN::Changes needed for this test.'
|
||
|
unless eval 'use Test::CPAN::Changes; 1;'; ## no critic (eval)
|
||
|
changes_ok();
|