userver: /data/code/userver/libraries/easy/samples/0_hello_world/testsuite/test_basic.py Source File
Loading...
Searching...
No Matches
test_basic.py
1async def test_hello_simple(service_client):
2 response = await service_client.get('/hello')
3 assert response.status == 200
4 assert 'text/plain' in response.headers['Content-Type']
5 assert response.text == 'Hello world'