Revert "Add some failing tests for path.join"

This reverts commit 8c0e87f9c3.

(Revert until fix comes)
This commit is contained in:
Ryan Dahl
2010-10-23 15:35:58 -07:00
parent 38f117cb6d
commit 477df1aaec

View File

@@ -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");