Skip to content

Commit

Permalink
fix tests per bash spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Sep 8, 2017
1 parent 605d4cf commit 626529a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/fixtures/extglob
Expand Up @@ -163,7 +163,7 @@ t aaab a??b
t a a?(x)

t foo.js.js *.!(js)
t foo.js.js *.!(js)*
f foo.js.js *.!(js)*
f foo.js.js *.!(js)+
f foo.js.js *.!(js)*.!(js)

Expand Down Expand Up @@ -196,6 +196,11 @@ t e.e *!(.a|.b|.c)
t f.f *!(.a|.b|.c)
t a.abcd *!(.a|.b|.c)

t b/b.txt b/!(c).txt
f b/c.txt b/!(c).txt
f b/cc.txt b/!(c).txt
f b/ccc.txt b/!(c).txt

t *(a|b[) *(a|b\\[)

t parse.y !(*.c|*.h|Makefile.in|config*|README)
Expand Down

0 comments on commit 626529a

Please sign in to comment.