8 lines
182 B
Python
8 lines
182 B
Python
from fastapi.testclient import TestClient
|
|
import pytest
|
|
from personal_info.app import create_app
|
|
|
|
@pytest.fixture()
|
|
def app_client():
|
|
app = create_app()
|
|
yield TestClient(app) |