This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
t/op/groups.t: Add missing "nok 1"
[perl5.git] / t / porting / corelist.t
CommitLineData
d918879d
CBW
1#!perl -w
2
3# Check that the current version of perl exists in Module-CoreList data
4
5use TestInit qw(T);
6use strict;
7use Config;
8
3d7c117d 9require './t/test.pl';
d918879d 10
ee2820c6 11plan(tests => 6);
d918879d
CBW
12
13use_ok('Module::CoreList');
14use_ok('Module::CoreList::Utils');
1524a56a 15use_ok('Module::CoreList::TieHashDelta');
d918879d
CBW
16
17{
18 no warnings 'once';
19 ok( defined $Module::CoreList::released{ $] }, "$] exists in released" );
20 ok( defined $Module::CoreList::version{ $] }, "$] exists in version" );
21 ok( defined $Module::CoreList::Utils::utilities{$] }, "$] exists in Utils" );
22}