mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
10 lines
195 B
Python
10 lines
195 B
Python
"""Test configuration"""
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from app.main import app
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
"""Test client fixture"""
|
|
return TestClient(app) |