Files
The_DisExcel_project/tests/integrated/test_crud.py
T
2026-08-19 00:22:59 +03:00

16 lines
367 B
Python

from types import SimpleNamespace
from unittest.mock import AsyncMock
import allure
import pytest
from src.service.users_crud.users_crud import CrudService
@pytest.mark.integra
class TestCrud:
async def test_create_user_positive(self, crud_service:CrudService, monkeypatch)->None:
with allure.step("Patching functions"):
pass