Ensure that argument lines are correctly split like in a shell.
(argstr, argv)
| 91 | ], |
| 92 | ) |
| 93 | def test_arg_split_win32(argstr, argv): |
| 94 | """Ensure that argument lines are correctly split like in a shell.""" |
| 95 | assert arg_split(argstr) == argv |
| 96 | |
| 97 | |
| 98 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…