(self, *_args, **_kwargs)
| 770 | |
| 771 | class ForbiddenManager: |
| 772 | def open(self, *_args, **_kwargs): |
| 773 | raise AssertionError("cold binary open must not open Desktop") |
| 774 | |
| 775 | monkeypatch.setattr(office_session.document_store, "create_session", forbidden_session) |
| 776 | monkeypatch.setattr(office_session.desktop_session, "get_manager", lambda: ForbiddenManager()) |
no outgoing calls
no test coverage detected