The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!perl -w
# Check that the current version of perl exists in Module-CoreList data
use TestInit qw(T);
use strict;
use Config;
require './t/test.pl';
plan(tests => 5);
use_ok('Module::CoreList');
use_ok('Module::CoreList::Utils');
{
no warnings 'once';
ok( defined $Module::CoreList::released{ $] }, "$] exists in released" );
ok( defined $Module::CoreList::version{ $] }, "$] exists in version" );
ok( defined $Module::CoreList::Utils::utilities{$] }, "$] exists in Utils" );
}