mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
530328f12b
Refactored test suite to use the assert module for testing rather than mjsunit.
21 lines
505 B
JavaScript
21 lines
505 B
JavaScript
process.mixin(require("./common"));
|
|
var got_error = false;
|
|
|
|
var filename = path.join(fixturesDir, "does_not_exist.txt");
|
|
var promise = posix.cat(filename, "raw");
|
|
|
|
promise.addCallback(function (content) {
|
|
debug("cat returned some content: " + content);
|
|
debug("this shouldn't happen as the file doesn't exist...");
|
|
assert.equal(true, false);
|
|
});
|
|
|
|
promise.addErrback(function () {
|
|
got_error = true;
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
puts("done");
|
|
assert.equal(true, got_error);
|
|
});
|