0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-file-cat-noexist.js
2009-09-20 18:19:33 +02:00

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);
});