From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
BEGIN {
eval {
Test::CPAN::Changes-> import ();
1;
} or do {
plan skip_all => 'Unable to load Test::CPAN::Changes' ;
exit ;
};
}
changes_ok( { next_token => 'next_release' } );
1;
|