You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
278 B
16 lines
278 B
7 months ago
|
use strict;
|
||
|
use warnings;
|
||
|
|
||
|
use ExtUtils::MakeMaker;
|
||
|
use Test::More tests => 1;
|
||
|
|
||
|
my $file = 'lib/ANTLR/Runtime.pm';
|
||
|
|
||
|
my $version = MM->parse_version($file);
|
||
|
|
||
|
# classic CPAN
|
||
|
#like($version, qr/^\d+\.\d{2,}(_\d{2,})?$/);
|
||
|
|
||
|
# version.pm
|
||
|
like($version, qr/^\d+\.\d+\.\d+(?:_\d+)?$/);
|