9 lines
392 B
Python
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"
|