mirror of https://github.com/lukechilds/node.git
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.
26 lines
487 B
26 lines
487 B
15 years ago
|
|
||
|
include("mjsunit.js");
|
||
|
|
||
|
var dirname = node.path.dirname(__filename);
|
||
|
var fixtures = node.path.join(dirname, "fixtures");
|
||
|
|
||
|
var got_error = false;
|
||
|
|
||
|
var promise = node.fs.readdir(fixtures);
|
||
|
puts("readdir " + fixtures);
|
||
|
|
||
|
promise.addCallback(function (files) {
|
||
|
p(files);
|
||
|
assertArrayEquals(["b","a.js","x.txt"], files);
|
||
|
});
|
||
|
|
||
|
promise.addErrback(function () {
|
||
|
puts("error");
|
||
|
got_error = true;
|
||
|
});
|
||
|
|
||
|
process.addListener("exit", function () {
|
||
|
assertFalse(got_error);
|
||
|
puts("exit");
|
||
|
});
|