Skip to content

Commit

Permalink
[t/spec] Add !== 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@30117 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
unobe committed Mar 17, 2010
1 parent 904fa6c commit d052ec4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions S03-operators/equality.t
Expand Up @@ -39,6 +39,8 @@ ok(2 == 2, "== true");
ok(!(2 == 3), "== false");
ok(2 != 3, "!= true");
ok(!(2 != 2), "!= false");
ok(2 !== 3, "!== true");
ok(!(2 !== 2), "!== false");

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

0 comments on commit d052ec4

Please sign in to comment.