chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:33 +08:00
commit aacb60a4af
3387 changed files with 981307 additions and 0 deletions
@@ -0,0 +1,18 @@
from __future__ import annotations
import pytest
from opensquilla.tools.builtin.nodes import canvas, nodes
from opensquilla.tools.types import ToolError
@pytest.mark.asyncio
async def test_nodes_list_stub_reports_runtime_unavailable() -> None:
with pytest.raises(ToolError, match="configured node runtime"):
await nodes("list")
@pytest.mark.asyncio
async def test_canvas_stub_reports_runtime_unavailable() -> None:
with pytest.raises(ToolError, match="configured node runtime"):
await canvas("snapshot", "main")