2025-plovdiv-testing-debugging/hands_on/first/test_first.py
2025-09-23 16:22:34 +03:00

13 lines
192 B
Python

from first import times_3
def test_times_3_integer():
value = [2]
expected = [1,1,1]
result = times_3(value)
assert result == expected
def test_times_3_string():
pass