+++: rangematch() fixes
[perl/list-index.git] / t / 20-links.t
index 11803985c362a70ef2db9bebe8d965a6e6f7f34b..f8f462da980cd10ad329326a31de19d7263ef427 100644 (file)
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 21;
+use Test::More tests => 22;
 use Test::NoWarnings;
 use Data::Dump 'pp';
 
@@ -27,6 +27,7 @@ for (
        [  'q-xxx' =>                '(?:[q-w]|x(?![x-z])|xx(?![x-z])|xxx)'],
        ['qqq-x'   => '(?:[r-x]|q[r-z]|qq[q-z])'],
        ['qaa-qb'  =>              '(?:qa[a-z]|qb)'],
+       ['qaa-qq'  =>       '(?:q[b-p]|qa[a-z]|qq)'],
        ['qqq-q'   =>       '(?:q[r-z]|qq[q-z])'],
 ) {
        my ($in, $out) = @$_;