Ensure that argument lines are correctly split like in a shell.
(argstr, argv)
| 76 | ], |
| 77 | ) |
| 78 | def test_arg_split(argstr, argv): |
| 79 | """Ensure that argument lines are correctly split like in a shell.""" |
| 80 | assert arg_split(argstr) == argv |
| 81 | |
| 82 | |
| 83 | @dec.skip_if_not_win32 |
nothing calls this directly
no test coverage detected
searching dependent graphs…