Skip to content

Commit

Permalink
fudge for jvm, new ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Nov 1, 2015
1 parent a152f36 commit c3e1c83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions S03-operators/buf.t
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ is $a cmp $a, Order::Same, 'cmp (same)';
is $a cmp $b, Order::Less, 'cmp (smaller)';
is $b cmp $a, Order::More, 'cmp (larger)';

#?rakudo.jvm skip 'RT #126530'
ok $a ~ $b eq Buf.new(1, 2, 3, 1, 2, 3, 4), '~ and eq work on bufs';

#?rakudo.jvm skip 'RT #126530'
is-deeply Buf.new(1, 2, 3) ~ Buf.new(4, 5), Buf.new(1, 2, 3, 4, 5), '~ concatenates';
nok Buf.new(), 'empty Buf is false';
ok Buf.new(1), 'non-empty Buf is true';
Expand Down

0 comments on commit c3e1c83

Please sign in to comment.