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
2009-06-28 19:08:26 +02:00

30 lines
545 B
JavaScript

include("mjsunit.js");
var pwd_called = false;
function pwd (callback) {
var output = "";
var process = new node.Process("pwd");
process.addListener("Output", function (s) {
if (s) output += s;
});
process.addListener("Exit", function(c) {
assertEquals(0, c);
callback(output);
pwd_called = true;
});
}
function onLoad () {
pwd(function (result) {
print(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
}
function onExit () {
assertTrue(pwd_called);
}