Return (patch, collected) where collected is a list of printed strings.
()
| 36 | |
| 37 | |
| 38 | def _collect_fmt(): |
| 39 | """Return (patch, collected) where collected is a list of printed strings.""" |
| 40 | collected: list[str] = [] |
| 41 | |
| 42 | def _fake_fmt(_style, *fragments): |
| 43 | for _cls, text in fragments: |
| 44 | collected.append(text) |
| 45 | |
| 46 | return patch("openkb.agent.chat._fmt", _fake_fmt), collected |
| 47 | |
| 48 | |
| 49 | # --- /status and /list use click.echo, captured by capsys --- |
no outgoing calls
no test coverage detected