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.
10 lines
335 B
10 lines
335 B
7 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
|
||
|
// Nul bytes should throw, not abort.
|
||
|
assert.throws(() => require('\u0000ab'), /Cannot find module '\u0000ab'/);
|
||
|
assert.throws(() => require('a\u0000b'), /Cannot find module 'a\u0000b'/);
|
||
|
assert.throws(() => require('ab\u0000'), /Cannot find module 'ab\u0000'/);
|