Lines Matching full:path
25 const path = require('path');
39 [path.posix, path.win32].forEach((namespace) => {
58 // path.sep tests
60 assert.strictEqual(path.win32.sep, '\\');
62 assert.strictEqual(path.posix.sep, '/');
64 // path.delimiter tests
66 assert.strictEqual(path.win32.delimiter, ';');
68 assert.strictEqual(path.posix.delimiter, ':');
71 assert.strictEqual(path, path.win32);
73 assert.strictEqual(path, path.posix);