0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/mjsunit/test-file-cat-noexist.js

21 lines
489 B
JavaScript
Raw Normal View History

process.mixin(require("./common"));
2009-06-28 19:05:58 +02:00
var got_error = false;
2009-06-01 12:56:28 +02:00
var filename = path.join(fixturesDir, "does_not_exist.txt");
var promise = posix.cat(filename, "raw");
2009-06-28 19:05:58 +02:00
2009-08-26 18:22:00 +02:00
promise.addCallback(function (content) {
debug("cat returned some content: " + content);
debug("this shouldn't happen as the file doesn't exist...");
2009-08-26 18:22:00 +02:00
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);
});