Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add tests for RT #118519
  • Loading branch information
coke committed Sep 9, 2013
1 parent 198a351 commit 71befce
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion S03-sequence/nonnumeric.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 35;
plan 37;

# L<S03/List infix precedence/'C<.succ> is assumed'>

Expand Down Expand Up @@ -90,6 +90,12 @@ is ('A' ...^ 'ZZ')[*-1], 'ZY', "'A' ...^ 'ZZ' omits last element";

is ('1a', '1b' ... '1e').Str, '1a 1b 1c 1d 1e', 'sequence with strings that starts with a digit but cannot convert to numbers';

#RT #118519
{
is ('▁' ... 'β–ˆ').Str, "▁ β–‚ β–ƒ β–„ β–… β–† β–‡ β–ˆ", "unicode blocks";
is ('.' ... '0').Str, ". / 0", "mixture";
}

done;

# vim: ft=perl6

0 comments on commit 71befce

Please sign in to comment.