Skip to content

Commit 13efd54

Browse files
committed
add t.throws(fn, Function)
1 parent 00835d8 commit 13efd54

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

lib/test.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var getTestArgs = function (name_, opts_, cb_) {
1818
var name = '(anonymous)';
1919
var opts = {};
2020
var cb;
21-
21+
2222
for (var i = 0; i < arguments.length; i++) {
2323
var arg = arguments[i];
2424
var t = typeof arg;
@@ -399,11 +399,12 @@ Test.prototype['throws'] = function (fn, expected, msg, extra) {
399399
msg = expected;
400400
expected = undefined;
401401
}
402+
402403
var caught = undefined;
404+
403405
try {
404406
fn();
405-
}
406-
catch (err) {
407+
} catch (err) {
407408
caught = { error : err };
408409
var message = err.message;
409410
delete err.message;
@@ -417,6 +418,11 @@ Test.prototype['throws'] = function (fn, expected, msg, extra) {
417418
expected = String(expected);
418419
}
419420

421+
if (typeof expected === 'function') {
422+
passed = caught.error instanceof expected;
423+
caught.error = caught.error.constructor;
424+
}
425+
420426
this._assert(passed, {
421427
message : defined(msg, 'should throw'),
422428
operator : 'throws',

readme.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`
180180

181181
## t.throws(fn, expected, msg)
182182

183-
Assert that the function call `fn()` throws an exception. `expected`, if present, must be a `RegExp`.
183+
Assert that the function call `fn()` throws an exception. `expected`, if present, must be a `RegExp` or `Function`.
184184

185185
## t.doesNotThrow(fn, expected, msg)
186186

test/throws.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
var test = require('../');
2+
3+
function fn() {
4+
throw new TypeError('RegExp');
5+
}
6+
7+
test('throws', function (t) {
8+
t.throws(fn);
9+
t.end();
10+
});
11+
12+
test('throws (RegExp match)', function (t) {
13+
t.throws(fn, /RegExp/);
14+
t.end();
15+
});
16+
17+
test('throws (Function match)', function (t) {
18+
t.throws(fn, TypeError);
19+
t.end();
20+
});

0 commit comments

Comments
 (0)