mirror of https://github.com/nodejs/node.git
19 lines
401 B
JavaScript
19 lines
401 B
JavaScript
include("mjsunit");
|
|
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();
|
|
});
|
|
};
|