Sha256: 180de672242013a75c172b3ca03e7bcbbaa5c4972ddcff8ccd7a0800b601cdd8

Contents?: true

Size: 647 Bytes

Versions: 205

Compression:

Stored size: 647 Bytes

Contents

var tap = require("tap")
  , minimatch = require("../")

tap.test("brace expansion", function (t) {
  // [ pattern, [expanded] ]
  ; [ [ "a{b,c{d,e},{f,g}h}x{y,z}"
      , [ "abxy"
        , "abxz"
        , "acdxy"
        , "acdxz"
        , "acexy"
        , "acexz"
        , "afhxy"
        , "afhxz"
        , "aghxy"
        , "aghxz" ] ]
    , [ "a{1..5}b"
      , [ "a1b"
        , "a2b"
        , "a3b"
        , "a4b"
        , "a5b" ] ]
    , [ "a{b}c", ["a{b}c"] ]
  ].forEach(function (tc) {
    var p = tc[0]
      , expect = tc[1]
    t.equivalent(minimatch.braceExpand(p), expect, p)
  })
  console.error("ending")
  t.end()
})


Version data entries

205 entries across 146 versions & 13 rubygems

Version Path
gulp_assets-1.0.0.pre.3 template/node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/readdirp/node_modules/minimatch/test/brace-expand.js
hooch-0.3.0 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
hooch-0.3.0 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.2.1 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
hooch-0.2.1 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.2.0 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
hooch-0.2.0 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.1.0 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.1.0 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
hooch-0.0.8 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
hooch-0.0.8 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.0.7 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
hooch-0.0.7 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.0.6 jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js
hooch-0.0.6 jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js
smock-0.1.268 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/readdirp/node_modules/minimatch/test/brace-expand.js
smock-0.1.267 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/readdirp/node_modules/minimatch/test/brace-expand.js
smock-0.1.266 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/readdirp/node_modules/minimatch/test/brace-expand.js
smock-0.1.265 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/readdirp/node_modules/minimatch/test/brace-expand.js
smock-0.1.264 node_modules/webpack/node_modules/watchpack/node_modules/chokidar/node_modules/readdirp/node_modules/minimatch/test/brace-expand.js