Обновить tests/test_dispatcher.py
Тест / Tester (push) Successful in 3s

This commit is contained in:
2026-04-24 22:19:28 +03:00
parent 40317f795e
commit 7eebb72bff
+3 -1
View File
@@ -20,6 +20,8 @@ class TestDispatcher(unittest.TestCase):
params ={'param': 'value'}
dispatcher.register('name', comparator, action)
method = dispatcher(params)
print(method)
result = method(params)
self.assertEqual(result, 'value')
def test_sub(self):
pass