Skip to content

Commit

Permalink
failing test for escaped space
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 18, 2012
1 parent 1c72261 commit c6ff3dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ test('parse shell commands', function (t) {
parse('beep "boop" \'foo bar baz\' "it\'s \\"so\\" groovy"'),
[ 'beep', 'boop', 'foo bar baz', 'it\'s "so" groovy' ]
);

t.same(parse('a b\\ c d'), [ 'a', 'b c', 'd' ]);
t.end();
});

0 comments on commit c6ff3dc

Please sign in to comment.