(input_string, expected_output)
| 76 | ), |
| 77 | ) |
| 78 | def test_compat_shell_quote_windows(input_string, expected_output): |
| 79 | assert compat_shell_quote(input_string, "win32") == expected_output |
| 80 | |
| 81 | |
| 82 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected