Sha256: 74ea5d9050c8e74166fa8cb66c96edd37a9b8d5889d0b849e7d38b26da48d3b6

Contents?: true

Size: 1.16 KB

Versions: 124

Compression:

Stored size: 1.16 KB

Contents

var tap = require("tap")

var origCwd = process.cwd()
process.chdir(__dirname)

tap.test("changing cwd and searching for **/d", function (t) {
  var glob = require('../')
  var path = require('path')
  t.test('.', function (t) {
    glob('**/d', function (er, matches) {
      t.ifError(er)
      t.like(matches, [ 'a/b/c/d', 'a/c/d' ])
      t.end()
    })
  })

  t.test('a', function (t) {
    glob('**/d', {cwd:path.resolve('a')}, function (er, matches) {
      t.ifError(er)
      t.like(matches, [ 'b/c/d', 'c/d' ])
      t.end()
    })
  })

  t.test('a/b', function (t) {
    glob('**/d', {cwd:path.resolve('a/b')}, function (er, matches) {
      t.ifError(er)
      t.like(matches, [ 'c/d' ])
      t.end()
    })
  })

  t.test('a/b/', function (t) {
    glob('**/d', {cwd:path.resolve('a/b/')}, function (er, matches) {
      t.ifError(er)
      t.like(matches, [ 'c/d' ])
      t.end()
    })
  })

  t.test('.', function (t) {
    glob('**/d', {cwd: process.cwd()}, function (er, matches) {
      t.ifError(er)
      t.like(matches, [ 'a/b/c/d', 'a/c/d' ])
      t.end()
    })
  })

  t.test('cd -', function (t) {
    process.chdir(origCwd)
    t.end()
  })

  t.end()
})

Version data entries

124 entries across 75 versions & 10 rubygems

Version Path
ela-4.1.6 node_modules/glob/test/cwd-test.js
ela-4.1.5 node_modules/glob/test/cwd-test.js
ela-4.1.4 node_modules/glob/test/cwd-test.js
ela-4.1.3 node_modules/glob/test/cwd-test.js
ela-4.1.2 node_modules/glob/test/cwd-test.js
ela-4.1.1 node_modules/glob/test/cwd-test.js
ela-4.1.0 node_modules/glob/test/cwd-test.js
ela-4.0.0 node_modules/glob/test/cwd-test.js
ela-3.4.3 node_modules/glob/test/cwd-test.js
ela-3.4.2 node_modules/glob/test/cwd-test.js
ela-3.4.0 node_modules/glob/test/cwd-test.js
ela-3.3.1 node_modules/glob/test/cwd-test.js
ela-3.3.0 node_modules/glob/test/cwd-test.js
ela-3.2.0 node_modules/glob/test/cwd-test.js
ela-3.1.1 node_modules/glob/test/cwd-test.js
ela-3.1.0 node_modules/glob/test/cwd-test.js
ela-3.0.0 node_modules/glob/test/cwd-test.js
ela-2.0.0 node_modules/glob/test/cwd-test.js
ela-1.1.0 node_modules/glob/test/cwd-test.js
blackboard-3.1.9 lib/site_template/node_modules/globule/node_modules/glob/test/cwd-test.js