mirror of https://github.com/lukechilds/node.git
Ryan
16 years ago
3 changed files with 21 additions and 10 deletions
@ -0,0 +1,11 @@ |
|||
include("mjsunit"); |
|||
|
|||
function onLoad () { |
|||
var dirname = node.path.dirname(__filename); |
|||
var fixtures = node.path.join(dirname, "fixtures"); |
|||
var filename = node.path.join(fixtures, "does_not_exist.txt"); |
|||
|
|||
node.fs.cat(filename, "raw", function (status, data) { |
|||
assertTrue(status != 0); |
|||
}); |
|||
}; |
Loading…
Reference in new issue