aboutsummaryrefslogtreecommitdiff
path: root/tools/blog/node_modules/glob/node_modules/graceful-fs/test/open.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/blog/node_modules/glob/node_modules/graceful-fs/test/open.js')
-rw-r--r--tools/blog/node_modules/glob/node_modules/graceful-fs/test/open.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/tools/blog/node_modules/glob/node_modules/graceful-fs/test/open.js b/tools/blog/node_modules/glob/node_modules/graceful-fs/test/open.js
deleted file mode 100644
index d05f880c86..0000000000
--- a/tools/blog/node_modules/glob/node_modules/graceful-fs/test/open.js
+++ /dev/null
@@ -1,41 +0,0 @@
-var test = require('tap').test
-var fs = require('../graceful-fs.js')
-
-test('open an existing file works', function (t) {
- var start = fs._curOpen
- var fd = fs.openSync(__filename, 'r')
- t.equal(fs._curOpen, start + 1)
- fs.closeSync(fd)
- t.equal(fs._curOpen, start)
- fs.open(__filename, 'r', function (er, fd) {
- if (er) throw er
- t.equal(fs._curOpen, start + 1)
- fs.close(fd, function (er) {
- if (er) throw er
- t.equal(fs._curOpen, start)
- t.end()
- })
- })
-})
-
-test('open a non-existing file throws', function (t) {
- var start = fs._curOpen
- var er
- try {
- var fd = fs.openSync('this file does not exist', 'r')
- } catch (x) {
- er = x
- }
- t.ok(er, 'should throw')
- t.notOk(fd, 'should not get an fd')
- t.equal(er.code, 'ENOENT')
- t.equal(fs._curOpen, start)
-
- fs.open('neither does this file', 'r', function (er, fd) {
- t.ok(er, 'should throw')
- t.notOk(fd, 'should not get an fd')
- t.equal(er.code, 'ENOENT')
- t.equal(fs._curOpen, start)
- t.end()
- })
-})