mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
4f46c47773
Reported by Jacob Rus.
21 lines
437 B
JavaScript
21 lines
437 B
JavaScript
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);
|
|
}
|