Skip to content

Commit

Permalink
failing test for quoted whitespace and nested quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 15, 2013
1 parent 44177e3 commit 9a4c11c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ test('parse shell commands', function (t) {
t.same(parse(' '), []);
t.same(parse("\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.end();
});

0 comments on commit 9a4c11c

Please sign in to comment.