()
| 22 | |
| 23 | |
| 24 | def test_temporary_working_directory(): |
| 25 | with TemporaryWorkingDirectory() as directory: |
| 26 | directory_path = Path(directory).resolve() |
| 27 | assert directory_path.exists() |
| 28 | assert Path.cwd().resolve() == directory_path |
| 29 | assert not directory_path.exists() |
| 30 | assert Path.cwd().resolve() != directory_path |
nothing calls this directly
no test coverage detected
searching dependent graphs…