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.
16 lines
301 B
16 lines
301 B
15 years ago
|
process.mixin(require("./common"));
|
||
|
|
||
|
puts('first stat ...');
|
||
|
|
||
|
posix.stat(__filename)
|
||
|
.addCallback( function(stats) {
|
||
|
puts('second stat ...');
|
||
|
posix.stat(__filename)
|
||
|
.timeout(1000)
|
||
|
.wait();
|
||
|
|
||
|
puts('test passed');
|
||
|
})
|
||
|
.addErrback(function() {
|
||
|
throw new Exception();
|
||
|
});
|