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.
 
 
 
 
 
 

20 lines
437 B

include("mjsunit.js");
var dirname = node.path.dirname(__filename);
var fixtures = node.path.join(dirname, "fixtures");
var x = node.path.join(fixtures, "x.txt");
var contents = "";
var f = new node.fs.File({ encoding: "utf8" });
f.open(x, "r+");
f.read(10000).addCallback(function (chunk) {
contents = chunk;
puts("got chunk: " + JSON.stringify(chunk));
});
f.close();
function onExit () {
assertEquals("xyz\n", contents);
}