mirror of https://gitlab.com/pamhyr/pamhyr2
Tools: Command line parser: Add a test.
parent
6c794d2eb4
commit
65c261887c
|
|
@ -78,6 +78,16 @@ class ToolsCMDParserTestCase(unittest.TestCase):
|
||||||
for i, s in enumerate(expect):
|
for i, s in enumerate(expect):
|
||||||
self.assertEqual(res[i], s)
|
self.assertEqual(res[i], s)
|
||||||
|
|
||||||
|
def test_unix_escape_space(self):
|
||||||
|
cmd = "/foo/bar\ baz -a -b -c"
|
||||||
|
expect = ["/foo/bar\ baz", "-a", '-b', "-c"]
|
||||||
|
|
||||||
|
res = parse_command_line(cmd)
|
||||||
|
|
||||||
|
for i, s in enumerate(expect):
|
||||||
|
self.assertEqual(res[i], s)
|
||||||
|
|
||||||
|
|
||||||
def test_windows_prog_files(self):
|
def test_windows_prog_files(self):
|
||||||
cmd = "\"C:\\Program Files (x86)\foo\bar\" a -b -c"
|
cmd = "\"C:\\Program Files (x86)\foo\bar\" a -b -c"
|
||||||
expect = ["C:\\Program Files (x86)\foo\bar", "a", '-b', "-c"]
|
expect = ["C:\\Program Files (x86)\foo\bar", "a", '-b', "-c"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue