From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
#!perl
BEGIN {
unless ( $ENV {RELEASE_TESTING}) {
Test::More::plan( skip_all => 'these tests are for release candidate testing' );
}
}
use_ok( 'Test::CPAN::Changes' );
subtest 'changes_ok' => sub {
changes_file_ok( 'Changes' );
};
done_testing();
|