14 lines
258 B
Python
14 lines
258 B
Python
import allure
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.integra
|
|
class TestCrud:
|
|
|
|
@pytest.mark.parametrize("email",[
|
|
("Test_Email@test.com")
|
|
])
|
|
async def test_get_user_by_email_positive(self):
|
|
|
|
with allure.step(""):
|
|
pass |