8 lines
164 B
Python
8 lines
164 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.gen_test
|
|
def test_hello_world(http_client, base_url):
|
|
response = yield http_client.fetch(base_url)
|
|
assert response.code == 200
|