(writer)
| 2336 | @pytest.mark.parametrize("mixed_case", [True, False] if sys.platform == "win32" else [False]) |
| 2337 | def test_path_translation(case_setup, mixed_case): |
| 2338 | def get_file_in_client(writer): |
| 2339 | # Instead of using: test_python/_debugger_case_path_translation.py |
| 2340 | # we'll set the breakpoints at foo/_debugger_case_path_translation.py |
| 2341 | file_in_client = os.path.dirname(os.path.dirname(writer.TEST_FILE)) |
| 2342 | return os.path.join(os.path.dirname(file_in_client), "foo", "_debugger_case_path_translation.py") |
| 2343 | |
| 2344 | def get_environ(writer): |
| 2345 | import json |
no test coverage detected