feat: complete modular plugin refactor with 100% E2E coverage for interactions

This commit is contained in:
2026-04-25 20:58:07 +02:00
parent 77e8251aa7
commit 144d6401b5
232 changed files with 66259 additions and 5410 deletions

15
test_mock.py Normal file
View File

@@ -0,0 +1,15 @@
from unittest.mock import patch
class A:
def method(self, arg):
pass
def dummy(self, arg):
print("DUMMY CALLED", arg)
with patch("__main__.A.method") as mock_method:
mock_method.side_effect = dummy
A().method("hello")