Test MCP plugin module
()
| 295 | |
| 296 | |
| 297 | def test_mcp_plugin(): |
| 298 | """Test MCP plugin module""" |
| 299 | import optillm.plugins.mcp_plugin as plugin |
| 300 | assert hasattr(plugin, 'run') |
| 301 | assert hasattr(plugin, 'SLUG') |
| 302 | assert hasattr(plugin, 'ServerConfig') |
| 303 | assert hasattr(plugin, 'MCPServer') |
| 304 | assert hasattr(plugin, 'execute_tool') |
| 305 | assert plugin.SLUG == "mcp" |
| 306 | |
| 307 | |
| 308 | def test_compact_plugin(): |