0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-file-cat-noexist.js

21 lines
492 B
JavaScript
Raw Normal View History

include("common.js");
2009-06-28 19:05:58 +02:00
var got_error = false;
2009-06-01 12:56:28 +02:00
var filename = node.path.join(fixturesDir, "does_not_exist.txt");
2009-08-26 18:22:00 +02:00
var promise = node.fs.cat(filename, "raw");
2009-06-28 19:05:58 +02:00
2009-08-26 18:22:00 +02:00
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;
});
2009-06-01 12:56:28 +02:00
process.addListener("exit", function () {
puts("done");
2009-06-28 19:05:58 +02:00
assertTrue(got_error);
});