16 lines
No EOL
229 B
Python
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 |