mirror of
https://github.com/Ichinga-Samuel/aiomql.git
synced 2026-08-15 21:08:06 +00:00
12 lines
213 B
Python
12 lines
213 B
Python
from aiomql.symbol import Symbol
|
|
|
|
from . import *
|
|
|
|
|
|
class TestSymbol(BaseTest):
|
|
sym = Symbol(name="EURJPY")
|
|
|
|
async def test_init(self):
|
|
await self.sym.init()
|
|
assert self.sym.select is True
|