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

11 lines
197 B
Python

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