summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js')
-rw-r--r--deps/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/deps/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js b/deps/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js
deleted file mode 100644
index 0862dc51f9..0000000000
--- a/deps/npm/node_modules/minimatch/node_modules/brace-expansion/test/nested.js
+++ /dev/null
@@ -1,16 +0,0 @@
-var test = require('tape');
-var expand = require('..');
-
-test('nested', function(t) {
- t.deepEqual(expand('{a,b{1..3},c}'), [
- 'a', 'b1', 'b2', 'b3', 'c'
- ]);
- t.deepEqual(expand('{{A..Z},{a..z}}'),
- 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('')
- );
- t.deepEqual(expand('ppp{,config,oe{,conf}}'), [
- 'ppp', 'pppconfig', 'pppoe', 'pppoeconf'
- ]);
- t.end();
-});
-