| Current Path : /home/deltalab/PMS/partner-manager-backend/node_modules/static-module/test/scope/ |
| Current File : //home/deltalab/PMS/partner-manager-backend/node_modules/static-module/test/scope/source.js |
var fs = require('fs')
function a ( fs ) {
return fs.readFileSync() // should not be replaced
}
T.equal(
a( { readFileSync : function () { return 'xyz' } } ),
'xyz'
)
T.equal( fs.readFileSync(), 'read the file!' )