()
| 14 | |
| 15 | @pytest.fixture |
| 16 | def mp() -> Generator[MonkeyPatch, None, None]: |
| 17 | cwd = os.getcwd() |
| 18 | sys_path = list(sys.path) |
| 19 | yield MonkeyPatch() |
| 20 | sys.path[:] = sys_path |
| 21 | os.chdir(cwd) |
| 22 | |
| 23 | |
| 24 | def test_setattr() -> None: |
nothing calls this directly
no test coverage detected