Files

15 lines
221 B
Python
Raw Permalink Normal View History

2024-10-28 06:36:10 +01:00
from aiomql.lib.symbol import Symbol
import pytest
2024-11-04 00:32:51 +01:00
@pytest.fixture(scope="function")
2024-10-28 06:36:10 +01:00
def btc_usd():
2024-11-04 00:32:51 +01:00
return Symbol(name="BTCUSD")
2025-08-10 04:14:00 +01:00
@pytest.fixture(scope="function")
def eth_usd():
return Symbol(name="ETHUSD")