(request)
| 180 | |
| 181 | @pytest.fixture |
| 182 | def py_mockfs(request): |
| 183 | return dict( |
| 184 | fs=PyFileSystem(ProxyHandler(_MockFileSystem())), |
| 185 | pathfn=lambda p: p, |
| 186 | allow_move_dir=True, |
| 187 | allow_append_to_file=True, |
| 188 | ) |
| 189 | |
| 190 | |
| 191 | @pytest.fixture |
nothing calls this directly
no test coverage detected