Activate the mock file system.
(self)
| 136 | |
| 137 | @contextlib.contextmanager |
| 138 | def contextmanager(self) -> Iterator['MockFs']: |
| 139 | """Activate the mock file system.""" |
| 140 | with self.mock(): |
| 141 | yield self |
| 142 | |
| 143 | @contextlib.contextmanager |
| 144 | def mock(self): |
no test coverage detected