aboutsummaryrefslogtreecommitdiff
path: root/tools/blog/node_modules/glob/node_modules/minimatch/test/brace-expand.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/blog/node_modules/glob/node_modules/minimatch/test/brace-expand.js')
-rw-r--r--tools/blog/node_modules/glob/node_modules/minimatch/test/brace-expand.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/tools/blog/node_modules/glob/node_modules/minimatch/test/brace-expand.js b/tools/blog/node_modules/glob/node_modules/minimatch/test/brace-expand.js
deleted file mode 100644
index 7ee278a274..0000000000
--- a/tools/blog/node_modules/glob/node_modules/minimatch/test/brace-expand.js
+++ /dev/null
@@ -1,33 +0,0 @@
-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()
-})
-
-