8 lines
127 B
Python
8 lines
127 B
Python
import pytest
|
|
from server import app
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
with app.test_client() as client:
|
|
yield client
|