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

16 lines
No EOL
229 B
Python

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