summaryrefslogtreecommitdiff
path: root/test/simple/path.js
blob: c87f3e1926530a34576d18ff82199cd5371315d8 (plain)
1
2
3
4
5
6
7
// This is actually more a fixture than a test. It is used to make
// sure that require('./path') and require('path') do different things.
// It has to be in the same directory as the test 'test-module-loading.js'
// and it has to have the same name as an internal module.
exports.path_func = function() {
  return 'path_func';
};