0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/test-file-open.js
Ryan b6fe4aec50 Module system refactor
There is one major API change in the refactor: filename extensions are now
required when requiring or including modules.

Added extra test to test-module-loading.js.
2009-06-08 15:34:15 +02:00

19 lines
404 B
JavaScript

include("mjsunit.js");
var assert_count = 0;
function onLoad () {
var dirname = node.path.dirname(__filename);
var fixtures = node.path.join(dirname, "fixtures");
var x = node.path.join(fixtures, "x.txt");
file = new node.fs.File;
file.onError = function (method, errno, msg) {
assertTrue(false);
};
file.open(x, "r", function () {
assert_count += 1;
file.close();
});
};