(runner)
| 440 | |
| 441 | |
| 442 | def test_isolated_runner(runner): |
| 443 | with runner.isolated_filesystem() as d: |
| 444 | assert os.path.exists(d) |
| 445 | |
| 446 | assert not os.path.exists(d) |
| 447 | |
| 448 | |
| 449 | def test_isolated_runner_custom_tempdir(runner, tmp_path): |
nothing calls this directly
no test coverage detected