Update /daily command, reorder telegram menu, limit /daily profit at 8 decimals

This commit is contained in:
Gerald Lonlas
2017-12-14 20:59:38 -08:00
parent bfb3e09d1d
commit 2a2af4878e
2 changed files with 7 additions and 8 deletions

View File

@@ -355,7 +355,7 @@ def test_daily_handle(
#try invalid data
msg_mock.reset_mock()
update_state(State.RUNNING)
update.message.text = '/daily'
update.message.text = '/daily -2'
_daily(bot=MagicMock(), update=update)
assert msg_mock.call_count == 1
assert 'must be an integer greater than 0' in msg_mock.call_args_list[0][0][0]