This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
'[at]' should be '@'
[perl5.git]
/
lib
/
CPAN
/
t
/
version.t
1
# test if our own version numbers meet expectations
2
3
my @m = qw(CPAN CPAN::FirstTime CPAN::Nox);
4
5
use Test::More;
6
plan(tests => scalar @m);
7
8
for 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: