mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
21 lines
492 B
JavaScript
21 lines
492 B
JavaScript
include("common.js");
|
|
var got_error = false;
|
|
|
|
var filename = node.path.join(fixturesDir, "does_not_exist.txt");
|
|
var promise = node.fs.cat(filename, "raw");
|
|
|
|
promise.addCallback(function (content) {
|
|
node.debug("cat returned some content: " + content);
|
|
node.debug("this shouldn't happen as the file doesn't exist...");
|
|
assertTrue(false);
|
|
});
|
|
|
|
promise.addErrback(function () {
|
|
got_error = true;
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
puts("done");
|
|
assertTrue(got_error);
|
|
});
|