#!/usr/bin/env python3 """Tests for the GitLab CLI MCP server main module.""" class TestMain: """Tests for the main module.""" def test_main_module_import(self) -> None: """Test main module can be imported.""" # Simply import the module to ensure it can be imported without errors import mcp_server_gitlab_glab.__main__ # Verify the module has the expected attributes assert hasattr(mcp_server_gitlab_glab.__main__, "run_server")