summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-constants-noatime.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2016-05-02 10:27:12 -0700
committerJames M Snell <jasnell@gmail.com>2016-05-17 11:05:18 -0700
commitdcccbfdc799d174901c29d82874457367231fec5 (patch)
treebb1a45d053b169af0b1662000d57e034e4422996 /test/parallel/test-process-constants-noatime.js
parentf856234ffaa10441545c3b6ce420b247a17c06cf (diff)
downloadandroid-node-v8-dcccbfdc799d174901c29d82874457367231fec5.tar.gz
android-node-v8-dcccbfdc799d174901c29d82874457367231fec5.tar.bz2
android-node-v8-dcccbfdc799d174901c29d82874457367231fec5.zip
src: refactor require('constants')
The require('constants') module is currently undocumented and mashes together unrelated constants. This refactors the require('constants') in favor of distinct os.constants, fs.constants, and crypto.constants that are specific to the modules for which they are relevant. The next step is to document those within the specific modules. PR-URL: https://github.com/nodejs/node/pull/6534 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Robert Lindstaedt <robert.lindstaedt@gmail.com>
Diffstat (limited to 'test/parallel/test-process-constants-noatime.js')
-rw-r--r--test/parallel/test-process-constants-noatime.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-process-constants-noatime.js b/test/parallel/test-process-constants-noatime.js
index 0503e67c38..bf4ed4d395 100644
--- a/test/parallel/test-process-constants-noatime.js
+++ b/test/parallel/test-process-constants-noatime.js
@@ -5,8 +5,8 @@ const assert = require('assert');
const constants = process.binding('constants');
if (process.platform === 'linux') {
- assert('O_NOATIME' in constants);
- assert.strictEqual(constants.O_NOATIME, 0x40000);
+ assert('O_NOATIME' in constants.fs);
+ assert.strictEqual(constants.fs.O_NOATIME, 0x40000);
} else {
- assert(!('O_NOATIME' in constants));
+ assert(!('O_NOATIME' in constants.fs));
}