mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-11-23 15:03:08 -05:00
9 lines
114 B
Python
9 lines
114 B
Python
from app import app
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
client = app.test_client()
|
|
yield client
|