Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Revert "Add some failing tests for path.join"
Browse files Browse the repository at this point in the history
This reverts commit 8c0e87f.

(Revert until fix comes)
  • Loading branch information
ry committed Oct 23, 2010
1 parent 38f117c commit 477df1a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/simple/test-path.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 477df1a

Please sign in to comment.