Skip to content

Commit

Permalink
Add test for RT #116014
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Nov 14, 2013
1 parent 6d5ee70 commit 2aa5824
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion S02-types/range.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 127;
plan 129;

# basic Range
# L<S02/Immutable types/A pair of Ordered endpoints>
Expand Down Expand Up @@ -289,4 +289,7 @@ is(+Range, 0, 'type numification');
#?pugs skip 'Cannot cast from VList to VCode'
is join(':',grep 1..3, 0..5), '1:2:3', "ranges itemize or flatten lazily";

lives_ok({'A'..'a'}, "A..a range completes");
lives_ok({"\0".."~"}, "low ascii range completes");

# vim:set ft=perl6

0 comments on commit 2aa5824

Please sign in to comment.