Blame t/release-cpan-changes.t

Packit 9002b2
#!perl
Packit 9002b2
Packit 9002b2
BEGIN {
Packit 9002b2
  unless ($ENV{RELEASE_TESTING}) {
Packit 9002b2
    require Test::More;
Packit 9002b2
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
Packit 9002b2
  }
Packit 9002b2
}
Packit 9002b2
Packit 9002b2
Packit 9002b2
use Test::More;
Packit 9002b2
eval 'use Test::CPAN::Changes';
Packit 9002b2
plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
Packit 9002b2
changes_ok();
Packit 9002b2
done_testing();