()
| 21 | assert not os.path.exists(name) |
| 22 | |
| 23 | def test_temporary_working_directory(): |
| 24 | with TemporaryWorkingDirectory() as dir: |
| 25 | assert os.path.exists(dir) |
| 26 | assert os.path.realpath(os.curdir) == os.path.realpath(dir) |
| 27 | assert not os.path.exists(dir) |
| 28 | assert os.path.abspath(os.curdir) != dir |
nothing calls this directly
no test coverage detected