Merge pull request #294 from jblestang/add_trades_count_in_performance

Add trades count foreach pair in performance command
This commit is contained in:
Gérald LONLAS
2018-01-02 23:03:30 -08:00
committed by GitHub
2 changed files with 7 additions and 6 deletions

View File

@@ -400,11 +400,10 @@ def test_performance_handle(
trade.close_date = datetime.utcnow()
trade.is_open = False
_performance(bot=MagicMock(), update=update)
assert msg_mock.call_count == 1
assert 'Performance' in msg_mock.call_args_list[0][0][0]
assert '<code>BTC_ETH\t6.20%</code>' in msg_mock.call_args_list[0][0][0]
assert '<code>BTC_ETH\t6.20% (1)</code>' in msg_mock.call_args_list[0][0][0]
def test_daily_handle(