_.bind should throw a TypeError if func is not a function. [closes #213]

Former-commit-id: b6035736d9cb042b7fa4a9d0b7b4d9c6cb0ea4f8
This commit is contained in:
John-David Dalton
2013-03-23 08:09:54 -07:00
parent 8a83a6b5be
commit 2cc2d696f1
11 changed files with 279 additions and 243 deletions

View File

@@ -245,6 +245,10 @@
ok(new bound instanceof func);
});
test('should throw a TypeError if `func` is not a function', function() {
raises(function() { _.bind(); }, TypeError);
});
}());
/*--------------------------------------------------------------------------*/