userver
C++ Async Framework
Toggle main menu visibility
Loading...
Searching...
No Matches
samples/websocket_service/tests/test_websocket.py
# /// [Functional test]
async def
test_echo(websocket_client):
async
with
websocket_client.get(
'chat'
)
as
chat:
await chat.send(
'hello'
)
response = await chat.recv()
assert
response ==
'hello'
# /// [Functional test]
Generated on
for userver by
Doxygen
1.17.0