mirror of https://github.com/lukechilds/node.git
9 lines
366 B
9 lines
366 B
15 years ago
|
// This is actually more a fixture than a test. It is used to make
|
||
13 years ago
|
var common = require('../common');
|
||
15 years ago
|
// 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.
|
||
14 years ago
|
exports.path_func = function() {
|
||
|
return 'path_func';
|
||
|
};
|