(tmp_path)
| 329 | |
| 330 | |
| 331 | def test_simple_python_hook(tmp_path): |
| 332 | _make_hello_hello(tmp_path) |
| 333 | |
| 334 | ret = run_language(tmp_path, python, 'socks', [os.devnull]) |
| 335 | assert ret == (0, f'[{os.devnull!r}]\nhello hello\n'.encode()) |
| 336 | |
| 337 | |
| 338 | def test_simple_python_hook_default_version(tmp_path): |
no test coverage detected