7 lines
165 B
Python
7 lines
165 B
Python
from src.exercise1 import remove_char
|
|
|
|
|
|
def test_remove_first_last_char() -> None:
|
|
assert remove_char("eloquent") == "loquen"
|
|
assert remove_char("ab") == ""
|