mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-03-11 08:54:34 +00:00
8 lines
114 B
Python
8 lines
114 B
Python
from app import app
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
client = app.test_client()
|
|
yield client
|