9 lines
200 B
Python
9 lines
200 B
Python
import pytest_asyncio
|
|
|
|
from src.service.users_crud.users_crud import CrudService
|
|
|
|
|
|
@pytest_asyncio.fixture
|
|
async def crud_service()->CrudService:
|
|
crud_service=CrudService()
|
|
return crud_service |