mirror of
https://github.com/fusion44/blitz_api.git
synced 2026-08-13 11:52:45 +02:00
10 lines
183 B
Python
10 lines
183 B
Python
import pytest
|
|
from starlette.testclient import TestClient
|
|
|
|
from app.main import app
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def test_client():
|
|
client = TestClient(app)
|
|
yield client
|