diff --git a/test/parse.js b/test/parse.js index d9c7c97..8b446ac 100644 --- a/test/parse.js +++ b/test/parse.js @@ -16,6 +16,8 @@ test('parse shell commands', function (t) { t.same(parse('a"b c d"e'), [ 'ab c de' ]); t.same(parse('a\\ b"c d"\\ e f'), [ 'a bc d e', 'f' ]); t.same(parse('a\\ b"c d"\\ e\'f g\' h'), [ 'a bc d ef g', 'h' ]); + t.same(parse("x \"bl'a\"'h'"), ['x', "bl'ah"]) + t.same(parse("x 'a'*"), ['x', 'a*']) t.end(); });