Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fudge relation.t for niecza
  • Loading branch information
moritz committed Jan 16, 2011
1 parent a2cd3d1 commit 2769a7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions S02-literals/hash-interpolation.t
Expand Up @@ -20,6 +20,7 @@ plan 10;
# L<S02/Literals/In order to interpolate an entire hash>
my %hash = { a=> 1, b => 2 };
#?rakudo 2 skip 'zen hash slice'
#?niecza skip 'zen hash slice'
is "%hash{}", "a\t1\nb\t2\n", 'interpolation with curly braces';
is "%hash<>", "a\t1\nb\t2\n", 'interpolation with angle brackets';
is "%hash", '%hash', 'no interpolation';
Expand Down
1 change: 1 addition & 0 deletions S03-operators/relational.t
Expand Up @@ -49,6 +49,7 @@ ok 1 >= 1/2, '1 is not greater than or equal to 1/2';
ok 1/2 >= 1/2, '1/2 is greater than or equal to 1/2';

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

0 comments on commit 2769a7c

Please sign in to comment.