Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove a bogus test
  • Loading branch information
moritz committed Jul 1, 2011
1 parent 7848251 commit 53a324b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions S29-conversions/ord_and_chr.t
Expand Up @@ -121,7 +121,7 @@ my @maps = (
"\o03", 3,
);

plan 39+@maps*2;
plan 38 + @maps*2;

for @maps -> $char, $code {
my $descr = "\\{$code}{$code >= 32 ?? " == '{$char}'" !! ""}";
Expand All @@ -143,8 +143,6 @@ for 0...31 -> $code {
is 'A'.ord, 65, "there's a .ord method";
is 65.chr, 'A', "there's a .chr method";

#?rakudo skip 'Broken in ng1'
is ord('hello'), [104, 101, 108, 108, 111], 'ord works with longer strings';
#?rakudo skip 'multi-arg variants of chr not in place yet'
is chr(104, 101, 108, 108, 111), 'hello', 'chr works with a list of ints';

Expand Down

0 comments on commit 53a324b

Please sign in to comment.