This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Nits in the pp_defined code spotted by Jarkko.
[perl5.git] / lib / CPAN / t / version.t
CommitLineData
554a9ef5
SP
1# test if our own version numbers meet expectations
2
f3fe0ae6 3my @m = qw(CPAN CPAN::FirstTime CPAN::Nox);
554a9ef5
SP
4
5use Test::More;
f3fe0ae6 6plan(tests => scalar @m);
554a9ef5
SP
7
8for my $m (@m) {
9 eval "require $m";
10 ok($m->VERSION >= 1.76, sprintf "%20s: %s", $m, $m->VERSION);
11}
12
13# Local Variables:
14# mode: cperl
15# cperl-indent-level: 2
16# End: