mirror of https://github.com/lukechilds/node.git
Ryan
16 years ago
2 changed files with 36 additions and 4 deletions
@ -0,0 +1,20 @@ |
|||
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); |
|||
} |
Loading…
Reference in new issue