mirror of https://github.com/lukechilds/node.git
Tobie Langel
15 years ago
committed by
Ryan Dahl
2 changed files with 34 additions and 12 deletions
@ -0,0 +1,19 @@ |
|||||
|
common = require("../common"); |
||||
|
assert = common.assert |
||||
|
|
||||
|
var path = require('path'), |
||||
|
fs = require('fs'); |
||||
|
|
||||
|
var file = path.join(common.fixturesDir, "write.txt"); |
||||
|
|
||||
|
(function() { |
||||
|
var stream = fs.createWriteStream(file), |
||||
|
_fs_close = fs.close; |
||||
|
|
||||
|
fs.close = function(fd) { |
||||
|
assert.ok(fd, "fs.close must not be called without an undefined fd.") |
||||
|
fs.close = _fs_close; |
||||
|
} |
||||
|
stream.destroy(); |
||||
|
})(); |
||||
|
|
Loading…
Reference in new issue