simple-message-channels/test/test_smc.py

6 lines
175 B
Python
Raw Normal View History

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)