Add __init__ setup, pytest-trio and split up tests
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
@ -1,10 +1,17 @@
|
||||
async def test_send_recv(smc):
|
||||
async def test_send_produces_bytes(smc):
|
||||
channel, type, message = 0, 0, b"abc"
|
||||
|
||||
payload = await smc.send(channel, type, message)
|
||||
assert isinstance(payload, bytes)
|
||||
|
||||
async with smc.recv(payload) as response:
|
||||
assert response.channel == channel
|
||||
assert response.type == type
|
||||
assert response.message == message
|
||||
|
||||
# async def test_recv_context_manager(smc):
|
||||
# channel, type, message = 0, 0, b"abc"
|
||||
|
||||
# payload = await smc.send(channel, type, message)
|
||||
# assert isinstance(payload, bytes)
|
||||
|
||||
# async with smc.recv(payload) as response:
|
||||
# assert response.channel == channel
|
||||
# assert response.type == type
|
||||
# assert response.message == message
|
||||
|
Reference in New Issue
Block a user