我有一個測試函數來操縱對象的內部狀態。該對象使用logging.info()記錄以下內容。 INFO:root:_change: test light red
INFO:root:_change: test light green
INFO:root:_change: test light yellow
我怎樣才能將它納入鼻子或unittest功能,以便我可以有一個類似的測試呢? def
Zed A. shaw的書「Learn python the hard way」(第3版)。我是一個Python的新手和學習python 。 我試圖運行nosetests命令,但它什麼都不做,而是顯示了一些錯誤消息(如附圖所示)。 Link to the exercise 能否請你幫我做什麼? 在此先感謝。 錯誤:
當在測試設置中有重大的重疊時,它可以讓事情繼續使用繼承。但是,這會造成一些問題與測試執行的不必要的重複: from unittest import TestCase
class TestPotato(TestCase):
def test_in_parent(self):
print 'in parent'
class TestSpud(TestPotato):