• Home
  • Raw
  • Download

Lines Matching refs:strictEqual

32   assert.strictEqual(path.toNamespacedPath(file),
34 assert.strictEqual(path.toNamespacedPath(`\\\\?\\${file}`),
36 assert.strictEqual(path.toNamespacedPath(
39 assert.strictEqual(path.toNamespacedPath(
42 assert.strictEqual(path.toNamespacedPath('\\\\.\\pipe\\somepipe'),
46 assert.strictEqual(path.toNamespacedPath(''), '');
47 assert.strictEqual(path.toNamespacedPath(null), null);
48 assert.strictEqual(path.toNamespacedPath(100), 100);
49 assert.strictEqual(path.toNamespacedPath(path), path);
50 assert.strictEqual(path.toNamespacedPath(false), false);
51 assert.strictEqual(path.toNamespacedPath(true), true);
54 assert.strictEqual(path.posix.toNamespacedPath('/foo/bar'), '/foo/bar');
55 assert.strictEqual(path.posix.toNamespacedPath('foo/bar'), 'foo/bar');
56 assert.strictEqual(path.posix.toNamespacedPath(null), null);
57 assert.strictEqual(path.posix.toNamespacedPath(true), true);
58 assert.strictEqual(path.posix.toNamespacedPath(1), 1);
59 assert.strictEqual(path.posix.toNamespacedPath(), undefined);
60 assert.strictEqual(path.posix.toNamespacedPath(emptyObj), emptyObj);
64 assert.strictEqual(path.toNamespacedPath(''), '');
65 assert.strictEqual(path.win32.toNamespacedPath('foo\\bar').toLowerCase(),
67 assert.strictEqual(path.win32.toNamespacedPath('foo/bar').toLowerCase(),
70 assert.strictEqual(
73 assert.strictEqual(path.win32.toNamespacedPath('C').toLowerCase(),
76 assert.strictEqual(path.win32.toNamespacedPath('C:\\foo'), '\\\\?\\C:\\foo');
77 assert.strictEqual(path.win32.toNamespacedPath('C:/foo'), '\\\\?\\C:\\foo');
78 assert.strictEqual(path.win32.toNamespacedPath('\\\\foo\\bar'),
80 assert.strictEqual(path.win32.toNamespacedPath('//foo//bar'),
82 assert.strictEqual(path.win32.toNamespacedPath('\\\\?\\foo'), '\\\\?\\foo');
83 assert.strictEqual(path.win32.toNamespacedPath(null), null);
84 assert.strictEqual(path.win32.toNamespacedPath(true), true);
85 assert.strictEqual(path.win32.toNamespacedPath(1), 1);
86 assert.strictEqual(path.win32.toNamespacedPath(), undefined);
87 assert.strictEqual(path.win32.toNamespacedPath(emptyObj), emptyObj);