Skip to content

Commit

Permalink
failing test for buffer comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Jan 29, 2014
1 parent 61c213c commit cc8990b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/cmp.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,8 @@ test('dates', function (t) {
t.ok(equal(d0, d1));
t.end();
});

test('buffers', function (t) {
t.ok(equal(Buffer('xyz'), Buffer('xyz')));
t.end();
});

0 comments on commit cc8990b

Please sign in to comment.