Remove heavily mocked tests

This commit is contained in:
Jeremiah Lowin 2025-07-07 09:48:36 -04:00
commit c1aad2aa23
2 changed files with 98 additions and 256 deletions

View file

@ -257,7 +257,9 @@ class TestInstallCursor:
config_data = json.loads(decoded)
assert "--with-editable" in config_data["args"]
assert "/local/package" in config_data["args"]
# Check for the editable path in a platform-agnostic way
editable_path_str = str(Path("/local/package"))
assert editable_path_str in config_data["args"]
assert "server.py:custom_app" in " ".join(config_data["args"])
@patch("fastmcp.cli.install.cursor.open_deeplink")