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