gateway/tests/unit/graphicalEditor/test_action_node_connection_provenance.py
2026-04-25 01:13:01 +02:00

9 lines
392 B
Python

# Copyright (c) 2025 Patrick Motsch
from modules.workflows.automation2.executors.actionNodeExecutor import _buildConnectionRefDict
def test_build_connection_ref_dict_from_logical_string():
d = _buildConnectionRefDict("connection:msft:user@example.com", None, None)
assert d is not None
assert d["authority"] == "msft"
assert d["label"] == "connection:msft:user@example.com"