Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-10-24 02:35:58 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-10-24 02:35:58 +0400
commit477df1aaec1b4824130c852da5babdf125e91a1c (patch)
tree7a2cbcf552bd536694a841df8fc17813c152fc12 /test
parent38f117cb6df78fc9ec718da9dae8918f80b08ffc (diff)
Revert "Add some failing tests for path.join"
This reverts commit 8c0e87f9c333f3519b6d6439099f669a316ed598. (Revert until fix comes)
Diffstat (limited to 'test')
-rw-r--r--test/simple/test-path.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/simple/test-path.js b/test/simple/test-path.js
index a9ca1f127cb..6570732ab32 100644
--- a/test/simple/test-path.js
+++ b/test/simple/test-path.js
@@ -39,10 +39,6 @@ assert.equal(path.extname("file."), ".");
assert.equal(path.join(".", "fixtures/b", "..", "/b/c.js"), "fixtures/b/c.js");
assert.equal(path.join("/foo", "../../../bar"), "/bar");
-assert.equal(path.join('./'), '.');
-assert.equal(path.join('.'), '.');
-assert.equal(path.join('', 'foo'), 'foo');
-assert.equal(path.join('foo', '/bar'), 'foo/bar');
assert.equal(path.normalize("./fixtures///b/../b/c.js"), "fixtures/b/c.js");
assert.equal(path.normalize("./fixtures///b/../b/c.js",true), "fixtures///b/c.js");