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.
28 lines
701 B
28 lines
701 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var fs = require('fs');
|
|
|
|
function test(cb) {
|
|
return function() {
|
|
// fs.stat() calls makeCallback() on its second argument
|
|
fs.stat(__filename, cb);
|
|
};
|
|
}
|
|
|
|
// Verify the case where a callback function is provided
|
|
assert.doesNotThrow(test(function() {}));
|
|
|
|
// Passing undefined calls rethrow() internally, which is fine
|
|
assert.doesNotThrow(test(undefined));
|
|
|
|
// Anything else should throw
|
|
assert.throws(test(null));
|
|
assert.throws(test(true));
|
|
assert.throws(test(false));
|
|
assert.throws(test(1));
|
|
assert.throws(test(0));
|
|
assert.throws(test('foo'));
|
|
assert.throws(test(/foo/));
|
|
assert.throws(test([]));
|
|
assert.throws(test({}));
|
|
|