File size: 551 Bytes
12f678a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import pytest

from src.dtos.ISayHelloDto import ISayHelloDto
from src.index import root, say_hello, hello_message


@pytest.mark.asyncio
async def test_root():
    result = await root()
    assert result == {'message': 'Hello World'}


@pytest.mark.asyncio
async def test_say_hello():
    result = await say_hello("John")
    assert result == {'message': 'Hello John'}


@pytest.mark.asyncio
async def test_hello_message():
    dto = ISayHelloDto(message="Alice")
    result = await hello_message(dto)
    assert result == {'message': 'Hello Alice'}