我有一个鼻子测试,导入一个运行带有raw_inputs类的文件.每当我在命令行中输入鼻子测试时,提示只会暂停并且不会继续-我必须通过键盘中断来查看会发生什么,结果鼻子测试正在将我的文件运行到第一个raw_input(很多) ,此时它只是暂停而无法继续.
有什么办法绕过这个吗?谢谢!
解决方法:
如果可能,请重写文件,以便在导入时不会调用raw_input().
# imported file
if __name__ == "__main__":
raw_input()
否则,如果您可以预先弄清楚什么是可接受的输入,则可以从文件中获取标准输入.假设input.txt包含“ Pass”:
nosetests test_input.py < input.txt
其中test_input.py是:
# test file
def test_input():
s = raw_input()
assert s.strip() == "Pass"
或者,您可以将可接受的输入传递给鼻子测试:
c:\>echo Pass | nosetests test_input.py
.
----------------------------------------------------------------------
Ran 1 test in 0.001s
OK
c:\>echo Fail | nosetests test_input.py
F
======================================================================
FAIL: cgp.test.test_input.test_input
----------------------------------------------------------------------
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\nose\case.py", line 187, in runTest
self.test(*self.arg)
File "c:\test_input.py", line 3, in test_input
assert s.strip() == "Pass"
AssertionError
----------------------------------------------------------------------
Ran 1 test in 0.002s
FAILED (failures=1)