0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00
nodejs/test/mjsunit/test-process-buffering.js
Ryan Dahl 7a2e784ad7 Module refactor - almost CommonJS compatible now
API change summary:

  * require("/sys.js") becomes require("sys")

  * require("circle.js") becomes require("./circle")

  * process.path.join() becomes require("path").join()
2009-10-31 19:10:30 +01:00

30 lines
613 B
JavaScript

process.mixin(require("./common"));
var pwd_called = false;
function pwd (callback) {
var output = "";
var child = process.createChildProcess("pwd");
child.addListener("output", function (s) {
puts("stdout: " + JSON.stringify(s));
if (s) output += s;
});
child.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(0, c);
callback(output);
pwd_called = true;
});
}
pwd(function (result) {
p(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
process.addListener("exit", function () {
assertTrue(pwd_called);
});