mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-20 04:24:17 +02:00
10 lines
246 B
Python
10 lines
246 B
Python
import pytest
|
|
|
|
from fastmcp import FastMCP
|
|
|
|
|
|
class TestMountSafety:
|
|
def test_self_mount_raises(self):
|
|
mcp = FastMCP("test")
|
|
with pytest.raises(ValueError, match="Cannot mount a server onto itself"):
|
|
mcp.mount(mcp)
|