Files
astra-personal-information/tests/conftest.py
dderbentsov bc339cefb9 first
2023-07-13 01:25:29 +03:00

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)