Skip to content

Commit

Permalink
Test that we can call assertion functions directly
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua T Corbin authored and James Halliday committed May 14, 2014
1 parent 46246e8 commit f9774cc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/bound.js
@@ -0,0 +1,10 @@
var test = require('../');

test('bind works', function (t) {
t.plan(2);
var equal = t.equal;
var deepEqual = t.deepEqual;
equal(3, 3);
deepEqual([4], [4]);
t.end();
});

0 comments on commit f9774cc

Please sign in to comment.