11 lines
197 B
Python
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]
|
|
|