Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/fstream-ignore/test/unignore-child.js')
-rw-r--r--node_modules/fstream-ignore/test/unignore-child.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/node_modules/fstream-ignore/test/unignore-child.js b/node_modules/fstream-ignore/test/unignore-child.js
new file mode 100644
index 000000000..5812354df
--- /dev/null
+++ b/node_modules/fstream-ignore/test/unignore-child.js
@@ -0,0 +1,38 @@
+// ignore most things
+var IgnoreFile = require("../")
+
+// set the ignores just for this test
+var c = require("./common.js")
+c.ignores({ ".ignore": ["*", "a", "c", "!a/b/c/.abc", "!/c/b/a/cba"] })
+
+// the only files we expect to see
+var expected =
+ [ "/a/b/c/.abc"
+ , "/a"
+ , "/a/b"
+ , "/a/b/c"
+ , "/c/b/a/cba"
+ , "/c"
+ , "/c/b"
+ , "/c/b/a" ]
+
+require("tap").test("basic ignore rules", function (t) {
+ t.pass("start")
+
+ IgnoreFile({ path: __dirname + "/fixtures"
+ , ignoreFiles: [".ignore"] })
+ .on("child", function (e) {
+ var p = e.path.substr(e.root.path.length)
+ var i = expected.indexOf(p)
+ if (i === -1) {
+ t.fail("unexpected file found", {f: p})
+ } else {
+ t.pass(p)
+ expected.splice(i, 1)
+ }
+ })
+ .on("close", function () {
+ t.notOk(expected.length, "all expected files should be seen")
+ t.end()
+ })
+})