diff --git a/test/bound.js b/test/bound.js new file mode 100644 index 00000000..d3981954 --- /dev/null +++ b/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(); +});