| 115 | captured = {} |
| 116 | |
| 117 | class FakeStore: |
| 118 | async def store_content(self, content_item): |
| 119 | captured.update(content_item) |
| 120 | |
| 121 | orig = xs.XhsStoreFactory.create_store |
| 122 | xs.XhsStoreFactory.create_store = staticmethod(lambda: FakeStore()) |
no outgoing calls