unit & interga tests

This commit is contained in:
2026-08-19 00:22:59 +03:00
parent b3083b0e82
commit 8bc3ff7b54
7 changed files with 84 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
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