(*, input_type, **kw)
| 101 | captured = {} |
| 102 | |
| 103 | def _fake(*, input_type, **kw): |
| 104 | captured['input_type'] = input_type |
| 105 | return {"results": ["OK"], "report": {"total": 1, "succeeded": 1, "failed_entries": []}} |
| 106 | |
| 107 | with patch("onecite.cli.process_references", side_effect=_fake): |
| 108 | cli.process_command(self._ns(input_file=str(inf), quiet=True)) |
nothing calls this directly
no test coverage detected