mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
17 lines
287 B
JavaScript
17 lines
287 B
JavaScript
|
var assert = require('assert');
|
||
|
|
||
|
assert.throws(
|
||
|
function() {
|
||
|
process.binding('test');
|
||
|
},
|
||
|
/No such module: test/
|
||
|
);
|
||
|
|
||
|
assert.doesNotThrow(function () {
|
||
|
process.binding('buffer');
|
||
|
}, function(err) {
|
||
|
if ( (err instanceof Error) ) {
|
||
|
return true;
|
||
|
}
|
||
|
}, "unexpected error");
|