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.
 
 
 
 
 
 

15 lines
349 B

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 File;
file.open(x, "r", function (status) {
assertTrue(status == 0);
assert_count += 1;
file.close();
});
};