mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
507 B
21 lines
507 B
15 years ago
|
process.mixin(require("./common"));
|
||
16 years ago
|
var got_error = false;
|
||
16 years ago
|
|
||
15 years ago
|
var filename = path.join(fixturesDir, "does_not_exist.txt");
|
||
15 years ago
|
var promise = fs.readFile(filename, "raw");
|
||
16 years ago
|
|
||
16 years ago
|
promise.addCallback(function (content) {
|
||
15 years ago
|
debug("cat returned some content: " + content);
|
||
|
debug("this shouldn't happen as the file doesn't exist...");
|
||
15 years ago
|
assert.equal(true, false);
|
||
16 years ago
|
});
|
||
|
|
||
|
promise.addErrback(function () {
|
||
|
got_error = true;
|
||
|
});
|
||
16 years ago
|
|
||
16 years ago
|
process.addListener("exit", function () {
|
||
15 years ago
|
puts("done");
|
||
15 years ago
|
assert.equal(true, got_error);
|
||
16 years ago
|
});
|