mirror of
https://github.com/Ichinga-Samuel/aiomql.git
synced 2026-07-28 04:37:43 +00:00
15 lines
221 B
Python
15 lines
221 B
Python
from aiomql.lib.symbol import Symbol
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def btc_usd():
|
|
return Symbol(name="BTCUSD")
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def eth_usd():
|
|
return Symbol(name="ETHUSD")
|
|
|
|
|