0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-process-buffering.js
Felix Geisendörfer 530328f12b CommonJS testing for node.js
Refactored test suite to use the assert module for testing rather than
mjsunit.
2009-12-05 01:05:16 +01:00

30 lines
629 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);
assert.equal(0, c);
callback(output);
pwd_called = true;
});
}
pwd(function (result) {
p(result);
assert.equal(true, result.length > 1);
assert.equal("\n", result[result.length-1]);
});
process.addListener("exit", function () {
assert.equal(true, pwd_called);
});