mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-07 21:00:17 +08:00
9 lines
234 B
Python
9 lines
234 B
Python
from catalyst.exchange.utils.factory import get_exchange
|
|
|
|
|
|
class TestConfig:
|
|
def test_create_config(self):
|
|
exchange = get_exchange('binance', skip_init=True)
|
|
config = exchange.create_exchange_config()
|
|
pass
|