Skip to content

Commit ec8381a

Browse files
committed
Merge pull request #25 from cjihrig/deepEqual
Allow prototypes to be ignored in deep.equal()
2 parents de224c5 + 4458f9c commit ec8381a

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -426,13 +426,15 @@ var expect = Code.expect;
426426
expect('abcd').to.have.length(4);
427427
```
428428

429-
#### `equal(value)`
429+
#### `equal(value[, options])`
430430

431431
Aliases: `equals()`
432432

433433
Asserts that the reference value equals the provided value (`deep` is required to compare non-literal
434434
types) where:
435435
- `value` - the value to compare to.
436+
- `options` - optional object specifying comparison options. This is only used on
437+
deep comparisons, and is ignored otherwise.
436438

437439
```js
438440
var Code = require('code');
@@ -442,6 +444,18 @@ expect(5).to.equal(5);
442444
expect({ a: 1 }).to.deep.equal({ a: 1 });
443445
```
444446

447+
Deep comparisons are performed using
448+
[`Hoek.deepEqual()`](https://github.com/hapijs/hoek#deepequalb-a-options). The
449+
optional `options` argument is passed directly to `Hoek.deepEqual()`. An example
450+
deep comparison which ignores object prototypes is shown below.
451+
452+
```js
453+
var Code = require('code');
454+
var expect = Code.expect;
455+
456+
expect(Object.create(null)).to.deep.equal({}, { prototype: false });
457+
```
458+
445459
#### `above(value)`
446460

447461
Aliases: `greaterThan()`

lib/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,11 @@ internals.addMethod('length', function (size) {
161161
});
162162

163163

164-
internals.addMethod(['equal', 'equals'], function (value) {
164+
internals.addMethod(['equal', 'equals'], function (value, options) {
165+
166+
var compare = this._flags.deep ? function (a, b) { return Hoek.deepEqual(a, b, options); } :
167+
function (a, b) { return a === b; };
165168

166-
var compare = (this._flags.deep ? Hoek.deepEqual : function (a, b) { return a === b; });
167169
return this.assert(compare(this._ref, value), 'equal specified value', this._ref, value);
168170
});
169171

test/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -1074,6 +1074,8 @@ describe('expect()', function () {
10741074
Code.expect({a: 1}).to.deep.equal({a: 1});
10751075
Code.expect({}).to.not.deep.equal({a: 1});
10761076
Code.expect({a: 1}).to.not.deep.equal({});
1077+
Code.expect(Object.create(null)).to.not.deep.equal({});
1078+
Code.expect(Object.create(null)).to.deep.equal({}, { prototype: false });
10771079
}
10781080
catch (err) {
10791081
exception = err;

0 commit comments

Comments
 (0)