13 lines
192 B
Python
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
|