Skip to content

Commit 2769a7c

Browse files
committed
fudge relation.t for niecza
1 parent a2cd3d1 commit 2769a7c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

S02-literals/hash-interpolation.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ plan 10;
2020
# L<S02/Literals/In order to interpolate an entire hash>
2121
my %hash = { a=> 1, b => 2 };
2222
#?rakudo 2 skip 'zen hash slice'
23+
#?niecza skip 'zen hash slice'
2324
is "%hash{}", "a\t1\nb\t2\n", 'interpolation with curly braces';
2425
is "%hash<>", "a\t1\nb\t2\n", 'interpolation with angle brackets';
2526
is "%hash", '%hash', 'no interpolation';

S03-operators/relational.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ ok 1 >= 1/2, '1 is not greater than or equal to 1/2';
4949
ok 1/2 >= 1/2, '1/2 is greater than or equal to 1/2';
5050

5151
# +'a' is 0. This means 1 is less than 'a' in numeric context but not string
52+
#?niecza 6 skip 'Str.Numeric'
5253
ok('a' < '1', '< uses numeric context');
5354
ok('a' <= '1', '<= uses numeric context (1)');
5455
ok('a' <= '0', '<= uses numeric context (2)');

0 commit comments

Comments
 (0)