diff --git a/test/mjsunit/test-fs-stat.js b/test/mjsunit/test-fs-stat.js new file mode 100644 index 0000000000..4e01d97d1a --- /dev/null +++ b/test/mjsunit/test-fs-stat.js @@ -0,0 +1,24 @@ +include("mjsunit.js"); + +var got_error = false; +var got_success = false; +var stats; + +var promise = node.fs.stat("."); + +promise.addCallback(function (_stats) { + stats = _stats; + p(stats); + got_success = true; +}); + +promise.addErrback(function () { + got_error = true; +}); + +function onExit () { + assertTrue(got_success); + assertFalse(got_error); + assertTrue(stats.mtime instanceof Date); +} +