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
|