Skip to content

Commit f9774cc

Browse files
Joshua T CorbinJames Halliday
Joshua T Corbin
authored and
James Halliday
committed
Test that we can call assertion functions directly
1 parent 46246e8 commit f9774cc

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/bound.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
var test = require('../');
2+
3+
test('bind works', function (t) {
4+
t.plan(2);
5+
var equal = t.equal;
6+
var deepEqual = t.deepEqual;
7+
equal(3, 3);
8+
deepEqual([4], [4]);
9+
t.end();
10+
});

0 commit comments

Comments
 (0)