diff options
author | isaacs <i@izs.me> | 2011-01-27 13:14:47 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-01-27 14:02:43 -0800 |
commit | 6cdeb3b3fd16d261efefd340ec3dd30b6a441444 (patch) | |
tree | 40bff94b5e3b6a96a04164894b3a2eefe537ff4f /test/fixtures/nested-index | |
parent | 36ef5643c3a3dc1a43e80ede442d4d1cd29b6a68 (diff) | |
download | node-new-6cdeb3b3fd16d261efefd340ec3dd30b6a441444.tar.gz |
A module ID with a trailing slash must be a dir.
require('./foo/') should not try to load './foo.js'. It should only
look for ./foo/index.js
Closes GH-588
Diffstat (limited to 'test/fixtures/nested-index')
-rw-r--r-- | test/fixtures/nested-index/three.js | 0 | ||||
-rw-r--r-- | test/fixtures/nested-index/three/index.js | 0 |
2 files changed, 0 insertions, 0 deletions
diff --git a/test/fixtures/nested-index/three.js b/test/fixtures/nested-index/three.js new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/test/fixtures/nested-index/three.js diff --git a/test/fixtures/nested-index/three/index.js b/test/fixtures/nested-index/three/index.js new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/test/fixtures/nested-index/three/index.js |