mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
647861befb
PR-URL: https://github.com/nodejs/node/pull/4753 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
19 lines
318 B
JavaScript
19 lines
318 B
JavaScript
'use strict';
|
|
require('../common');
|
|
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');
|