Added the built int functions registry

Still lots to do tho
This commit is contained in:
2026-07-25 15:06:41 +01:00
parent a76374e128
commit 026ab23a89
11 changed files with 308 additions and 110 deletions
@@ -0,0 +1,13 @@
import os
import unittest
from a import ActionRegistry
CDIR = os.path.dirname(__file__)
class TestActionRegistry(unittest.TestCase):
def test_creating_action_registry(self):
reg: ActionRegistry = ActionRegistry("test_registry")
self.assertEqual(reg.name, "test_registry")