(tmp_path, messages, *, ui=None)
| 72 | |
| 73 | |
| 74 | def _ctx(tmp_path, messages, *, ui=None): |
| 75 | conversation = SimpleNamespace(messages=messages) |
| 76 | return create_command_context( |
| 77 | workspace_root=tmp_path, cwd=tmp_path, conversation=conversation, ui=ui |
| 78 | ) |
| 79 | |
| 80 | |
| 81 | # --------------------------------------------------------------------------- # |
no test coverage detected