summaryrefslogtreecommitdiff
path: root/test/simple/test-file-read-noexist.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-file-read-noexist.js')
-rw-r--r--test/simple/test-file-read-noexist.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/simple/test-file-read-noexist.js b/test/simple/test-file-read-noexist.js
new file mode 100644
index 0000000000..a68c4662c6
--- /dev/null
+++ b/test/simple/test-file-read-noexist.js
@@ -0,0 +1,18 @@
+process.mixin(require("../common"));
+var got_error = false;
+
+var filename = path.join(fixturesDir, "does_not_exist.txt");
+fs.readFile(filename, "raw", function (err, content) {
+ if (err) {
+ got_error = true;
+ } else {
+ debug("cat returned some content: " + content);
+ debug("this shouldn't happen as the file doesn't exist...");
+ assert.equal(true, false);
+ }
+});
+
+process.addListener("exit", function () {
+ puts("done");
+ assert.equal(true, got_error);
+});