Merge pull request #5229 from kevinjulian/telegram-balance

compact low balance currencies
This commit is contained in:
Matthias
2021-07-05 06:56:35 +02:00
committed by GitHub
3 changed files with 22 additions and 8 deletions

View File

@@ -1762,7 +1762,7 @@ def rpc_balance():
'total': 0.1,
'free': 0.01,
'used': 0.0
},
},
'EUR': {
'total': 10.0,
'free': 10.0,

View File

@@ -519,12 +519,15 @@ def test_telegram_balance_handle(default_conf, update, mocker, rpc_balance, tick
assert msg_mock.call_count == 1
assert '*BTC:*' in result
assert '*ETH:*' not in result
assert '*USDT:*' in result
assert '*EUR:*' in result
assert '*USDT:*' not in result
assert '*EUR:*' not in result
assert '*LTC:*' in result
assert '*XRP:*' not in result
assert 'Balance:' in result
assert 'Est. BTC:' in result
assert 'BTC: 12.00000000' in result
assert '*XRP:* not showing <0.0001 BTC amount' in result
assert "*3 Other Currencies (< 0.0001 BTC):*" in result
assert 'BTC: 0.00000309' in result
def test_balance_handle_empty_response(default_conf, update, mocker) -> None: