Python Schoolby trefilov
Шаг 1 из 4+100 XP

pytest (концепт)

Тесты, фикстуры, assert.

pytest

def add(a,b): return a+b
def test_add():
    assert add(2,3) == 5

Запуск: pytest.