mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
30 lines
547 B
JavaScript
30 lines
547 B
JavaScript
include("mjsunit.js");
|
|
|
|
var pwd_called = false;
|
|
|
|
function pwd (callback) {
|
|
var output = "";
|
|
var process = node.createProcess("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);
|
|
}
|