16 lines
367 B
Python
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 |