We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6877ad6 commit 6e57f65Copy full SHA for 6e57f65
t/04strict_lax.t
@@ -13,6 +13,10 @@ SKIP: {
13
strict_lax_tests();
14
is ref($version::LAX), 'Regexp', 'Can see $version::LAX '.$version::LAX ;
15
is ref($version::STRICT), 'Regexp', 'Can see $version::STRICT '.$version::STRICT;
16
+ { # https://rt.cpan.org/Ticket/Display.html?id=114712
17
+ my ($v) = ( "snapshot-1.2.3ga-001-432" =~ /($version::LAX)/ );
18
+ is $v, '1.2.3', 'Extract just the version';
19
+ }
20
}
21
22
0 commit comments