new tests, upgrade tests coverage

This commit is contained in:
2025-12-05 22:57:19 +03:00
parent 913e7f16ca
commit 2423f57000
8 changed files with 104 additions and 58 deletions
+4 -14
View File
@@ -1,15 +1,5 @@
from argenta import App, Router, Command, Response
from argenta import App
app = App(override_system_messages=True)
router = Router()
@router.command(Command('test', aliases={'alias', 'primer'}))
def handler(res: Response):
pass
@router.command(Command('test2', aliases={'alias', 'primer'}))
def handler2(res: Response):
pass
print(router.aliases)
app = App()
app._setup_default_view()
app._empty_input_command_handler()