(self, mock_theme, runner)
| 744 | class TestModelsCommand: |
| 745 | @patch("mcp_cli.main.set_theme") |
| 746 | def test_models_no_provider(self, mock_theme, runner): |
| 747 | from mcp_cli.main import app |
| 748 | |
| 749 | mm = _make_model_manager() |
| 750 | with patch("mcp_cli.model_management.ModelManager", return_value=mm): |
| 751 | with patch("mcp_cli.main.output"): |
| 752 | runner.invoke(app, ["models"]) |
| 753 | |
| 754 | @patch("mcp_cli.main.set_theme") |
| 755 | def test_models_with_provider(self, mock_theme, runner): |
nothing calls this directly
no test coverage detected