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.
19 lines
456 B
19 lines
456 B
7 years ago
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
const uv = process.binding('uv');
|
||
|
|
||
|
// Ensures that the `UV_...` values in process.binding('uv')
|
||
|
// are constants.
|
||
|
|
||
|
const keys = Object.keys(uv);
|
||
|
keys.forEach((key) => {
|
||
|
if (key === 'errname')
|
||
|
return; // skip this
|
||
|
const val = uv[key];
|
||
|
assert.throws(() => uv[key] = 1,
|
||
|
/^TypeError: Cannot assign to read only property/);
|
||
|
assert.strictEqual(uv[key], val);
|
||
|
});
|