mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
795 B
37 lines
795 B
var test = require('tape');
|
|
var tryit = require('../tryit');
|
|
|
|
|
|
test('basic functionality', function (t) {
|
|
var count = 0;
|
|
|
|
var noOp = function () {};
|
|
var throwsError = function () {
|
|
throw new Error('whammo');
|
|
}
|
|
|
|
tryit(noOp, function (e) {
|
|
t.ok(e == null, 'should be called without an error');
|
|
});
|
|
|
|
tryit(throwsError, function (e) {
|
|
t.ok('should be called');
|
|
t.ok(e instanceof Error);
|
|
});
|
|
|
|
t.end();
|
|
});
|
|
|
|
test('handle case where callback throws', function (t) {
|
|
var count = 0;
|
|
|
|
t.throws(function () {
|
|
tryit(function () {}, function(e) {
|
|
count++;
|
|
t.equal(count, 1, 'should be called once');
|
|
throw new Error('kablowie');
|
|
});
|
|
}, 'should throw once');
|
|
|
|
t.end();
|
|
});
|
|
|