Test with multiple commands in one line

This commit is contained in:
Theagainmen 2020-06-10 16:28:37 +02:00 committed by Matthias
parent ac92834693
commit 04fa597695
2 changed files with 6 additions and 6 deletions

View File

@ -95,10 +95,10 @@ class Telegram(RPC):
CommandHandler('performance', self._performance),
CommandHandler('daily', self._daily),
CommandHandler('count', self._count),
CommandHandler('reload_conf', self._reload_config),
CommandHandler('reload_config', self._reload_config),
CommandHandler('show_conf', self._reload_config),
CommandHandler('show_config', self._show_config),
#CommandHandler('reload_conf', self._reload_config),
CommandHandler(('reload_config' or 'reload_con'), self._reload_config),
#CommandHandler('show_conf', self._reload_config),
CommandHandler('show_config' or 'show_conf', self._show_config),
CommandHandler('stopbuy', self._stopbuy),
CommandHandler('whitelist', self._whitelist),
CommandHandler('blacklist', self._blacklist),

View File

@ -73,8 +73,8 @@ def test_init(default_conf, mocker, caplog) -> None:
message_str = ("rpc.telegram is listening for following commands: [['status'], ['profit'], "
"['balance'], ['start'], ['stop'], ['forcesell'], ['forcebuy'], "
"['performance'], ['daily'], ['count'], ['reload_conf'], ['reload_config'], "
"['show_conf'], ['show_config'], ['stopbuy'], ['whitelist'], "
"['performance'], ['daily'], ['count'], ['reload_config'], "
"['show_config'], ['stopbuy'], ['whitelist'], "
"['blacklist'], ['edge'], ['help'], ['version']]")
assert log_has(message_str, caplog)