diff --git a/test/parse.js b/test/parse.js index f3c4e61..803492e 100644 --- a/test/parse.js +++ b/test/parse.js @@ -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(); });