From cfd7d0a38b70f32ce8273a940f8f9280d0aad913 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 6 Oct 2025 19:08:50 +0200 Subject: [PATCH] test: add ccxt parse test for kraken part of #12326 --- tests/exchange_online/conftest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/exchange_online/conftest.py b/tests/exchange_online/conftest.py index 8937c0d14..fac7c25b8 100644 --- a/tests/exchange_online/conftest.py +++ b/tests/exchange_online/conftest.py @@ -153,6 +153,8 @@ EXCHANGES = { "ADA.F": {"balance": "2.00000000", "hold_trade": "0.00000000"}, "XBT": {"balance": "0.00060000", "hold_trade": "0.00000000"}, "XBT.F": {"balance": "0.00100000", "hold_trade": "0.00000000"}, + "ZEUR": {"balance": "1000.00000000", "hold_trade": "0.00000000"}, + "ZUSD": {"balance": "1000.00000000", "hold_trade": "0.00000000"}, } }, "expected": { @@ -161,6 +163,8 @@ EXCHANGES = { "BTC": {"free": 0.0006, "total": 0.0006, "used": 0.0}, # XBT.F should be mapped to BTC.F "BTC.F": {"free": 0.001, "total": 0.001, "used": 0.0}, + "EUR": {"free": 1000.0, "total": 1000.0, "used": 0.0}, + "USD": {"free": 1000.0, "total": 1000.0, "used": 0.0}, }, }, },