lnbits/tests/core/test_views.py

7 lines
132 B
Python
Raw Normal View History

2020-09-18 01:41:30 +00:00
import pytest
async def test_homepage(client):
r = await client.get("/")
assert b"Add a new wallet" in await r.get_data()