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.
 
 
 
 
 
 

29 lines
604 B

include("mjsunit.js");
var got_error = false;
var opened = false;
var closed = false;
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 node.fs.File;
file.addListener("error", function () { got_error = true; });
file.open(x, "r").addCallback(function () {
opened = true;
file.close().addCallback(function () {
closed = true;
});
});
puts("hey!");
}
function onExit () {
assertFalse(got_error);
assertTrue(opened);
assertTrue(closed);
}