(self, mock_theme, runner)
| 753 | |
| 754 | @patch("mcp_cli.main.set_theme") |
| 755 | def test_models_with_provider(self, mock_theme, runner): |
| 756 | from mcp_cli.main import app |
| 757 | |
| 758 | mm = _make_model_manager() |
| 759 | with patch("mcp_cli.model_management.ModelManager", return_value=mm): |
| 760 | with patch("mcp_cli.main.output"): |
| 761 | runner.invoke(app, ["models", "openai"]) |
| 762 | |
| 763 | @patch("mcp_cli.main.set_theme") |
| 764 | def test_models_unknown_provider(self, mock_theme, runner): |
nothing calls this directly
no test coverage detected