7 lines
141 B
Python
7 lines
141 B
Python
def test_the_tester():
|
|
assert False
|
|
|
|
def test_hello_world(client):
|
|
response = client.get("/")
|
|
assert response.status_code == 200
|