Started unit test for Workflows.py and WorkflowDesigner.py

This commit is contained in:
2025-07-06 11:02:57 +02:00
parent 9df32e3b5f
commit 60872a0aec
9 changed files with 348 additions and 17 deletions

View File

@@ -25,7 +25,7 @@ def tabs_manager():
self._called_methods: list[tuple] = []
def add_tab(self, *args, **kwargs):
self._called_methods.append(("set_tab_content", args, kwargs))
self._called_methods.append(("add_tab", args, kwargs))
table_name, content, key = args
self.tabs.append({"table_name": table_name, "content": content, "key": key})