标签: python-3.x unit-testing io
我正在尝试在python3中测试各种输入函数,并且需要一种方法来模拟用户输入而不会提示用户并停止makefile的运行。
def _input_wrapper(prompt, strip=True): try: reply = input(prompt).lower() if strip: reply = reply.strip() except EOFError: reply = "" return reply