Skip to content

Commit

Permalink
Untodo 3 tests that nom handles that master didn't.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jul 4, 2011
1 parent a58918d commit 6c80155
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions S03-operators/equality.t
Expand Up @@ -26,12 +26,10 @@ ok("a" ne "a ", "ne doesn't have space-padding semantics");

# string context on undefined values
my $foo;
#?rakudo todo "+Any() doesn't work yet"
ok($foo eq "", "Any eq ''");
ok($foo ne "f", "Any ne 'f'");

my @foo;
#?rakudo todo "Any.Stringy"
ok(@foo[0] eq "", "Array Any eq ''");
ok(@foo[0] ne "f", "Array Any ne 'f'");

Expand All @@ -46,7 +44,6 @@ ok(2 !== 3, "!== true");
ok(!(2 !== 2), "!== false");
ok($foo !eq "f", "!eq true undef");
ok("" !eq "f", "!eq true empty string");
#?rakudo todo "undef not coerced properly"
ok(!($foo !eq ""), "!eq false undef and empty string");
ok(!($foo !eq $foo), "!eq false undef twice");
ok(!("" !eq ""), "!eq false empty string twice");
Expand Down

0 comments on commit 6c80155

Please sign in to comment.