Skip to main content
Glama

MockLoop MCP Server

Official
by MockLoop
test_structure.pyโ€ข1.05 kB
"""Integration test to verify the new test structure works correctly.""" from pathlib import Path import pytest def test_integration_can_access_fixtures(): """Test that integration tests can access fixtures.""" fixtures_dir = Path(__file__).parent.parent / "fixtures" test_spec_path = fixtures_dir / "test_spec.json" assert test_spec_path.exists() def test_integration_can_access_unit_tests(): """Test that integration tests can reference unit test directory.""" unit_dir = Path(__file__).parent.parent / "unit" assert unit_dir.exists() assert (unit_dir / "__init__.py").exists() @pytest.mark.integration def test_integration_marker(): """Test that integration marker works.""" assert True @pytest.mark.slow def test_slow_marker(): """Test that slow marker works.""" assert True if __name__ == "__main__": # Simple test runner for verification test_integration_can_access_fixtures() test_integration_can_access_unit_tests() test_integration_marker() test_slow_marker()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MockLoop/mockloop-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server