simple-message-channels/test/test_smc.py
2020-07-08 00:20:44 +02:00

6 lines
175 B
Python

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)