Skip to content

Commit

Permalink
actually the test was wrong, module works fine
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed May 28, 2012
1 parent 8dbb280 commit 9d7b727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test('parse shell commands', function (t) {
);
t.same(parse('a b\\ c d'), [ 'a', 'b c', 'd' ]);
t.same(parse('\\$beep bo\\`op'), [ '$beep', 'bo`op' ]);
t.same(parse('echo "foo = \"foo\""'), [ 'echo', 'foo = "foo"' ]);
t.same(parse('echo "foo = \\"foo\\""'), [ 'echo', 'foo = "foo"' ]);

t.end();
});

0 comments on commit 9d7b727

Please sign in to comment.