Check for ObjectContaining on either side of equality.

- Also clean up `undefined` check.

Fixes #682
This commit is contained in:
slackersoft
2014-12-16 17:05:32 -08:00
parent 6bd98cb2ab
commit ea88023553
5 changed files with 28 additions and 14 deletions

View File

@@ -43,4 +43,16 @@ describe("ObjectContaining", function() {
expect(containing.asymmetricMatch({one: {two: {}}})).toBe(true);
});
it("matches when key is present with undefined value", function() {
var containing = new j$.ObjectContaining({ one: undefined });
expect(containing.asymmetricMatch({ one: undefined })).toBe(true);
});
it("does not match when key with undefined value is not present", function() {
var containing = new j$.ObjectContaining({ one: undefined });
expect(containing.asymmetricMatch({})).toBe(false);
});
});