| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 49c4886 commit 558f7d9
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -71,6 +71,21 @@ assert.throws(makeBlock(a.deepEqual, new Date(), new Date(2000, 3, 14)), | |||
| 71 | 71 | a.AssertionError, | |
| 72 | 72 | 'deepEqual(new Date(), new Date(2000, 3, 14))'); | |
| 73 | 73 | ||
| 74 | + assert.throws(makeBlock( | ||
| 75 | + a.notDeepEqual, | ||
| 76 | + new Date(2000, 3, 14), | ||
| 77 | + new Date(2000, 3, 14)), | ||
| 78 | + a.AssertionError, | ||
| 79 | + 'notDeepEqual(new Date(2000, 3, 14), new Date(2000, 3, 14))' | ||
| 80 | + ); | ||
| 81 | + | ||
| 82 | + assert.doesNotThrow(makeBlock( | ||
| 83 | + a.notDeepEqual, | ||
| 84 | + new Date(), | ||
| 85 | + new Date(2000, 3, 14)), | ||
| 86 | + 'notDeepEqual(new Date(), new Date(2000, 3, 14))' | ||
| 87 | + ); | ||
| 88 | + | ||
| 74 | 89 | // 7.3 | |
| 75 | 90 | assert.doesNotThrow(makeBlock(a.deepEqual, /a/, /a/)); | |
| 76 | 91 | assert.doesNotThrow(makeBlock(a.deepEqual, /a/g, /a/g)); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments