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.
 
 
 
 
 
 

21 lines
513 B

process.mixin(require("./common"));
var fn = path.join(fixturesDir, "write.txt");
var expected = "hello";
var found;
fs.open(fn, 'w', 0644).addCallback(function (file) {
fs.write(file, expected, 0, "utf8").addCallback(function() {
fs.close(file).addCallback(function() {
fs.readFile(fn, process.UTF8).addCallback(function(contents) {
found = contents;
fs.unlink(fn).wait();
});
});
});
});
process.addListener("exit", function () {
assert.equal(expected, found);
});