4 lines
92 B
Python
4 lines
92 B
Python
def test_homepage(client):
|
|
r = client.get("/")
|
|
assert b"Add a new wallet" in r.data
|