mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2024-12-19 04:17:52 +00:00
13 lines
277 B
Python
13 lines
277 B
Python
import pytest
|
|
from app import app
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
with app.test_client() as client:
|
|
yield client
|
|
|
|
def test_homepage(client):
|
|
response = client.get('/')
|
|
assert response.status_code == 200
|
|
assert b"Welcome to my Flask app" in response.data
|