Navigation Menu

Skip to content

Commit

Permalink
[t/spec] Add !eq tests to S03-operators/equality.t
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@30118 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
unobe committed Mar 17, 2010
1 parent d052ec4 commit c5f4109
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions S03-operators/equality.t
Expand Up @@ -39,8 +39,12 @@ ok(2 == 2, "== true");
ok(!(2 == 3), "== false");
ok(2 != 3, "!= true");
ok(!(2 != 2), "!= false");

#L<S03/Negated relational operators>
ok(2 !== 3, "!== true");
ok(!(2 !== 2), "!== false");
ok($foo !eq "f", "!eq true");
ok(!($foo !eq ""), "!eq false");

# numeric context on undefined values
#?rakudo skip "+Any doesn't work yet"
Expand Down

0 comments on commit c5f4109

Please sign in to comment.