nose發現過程查找名稱以test開頭的所有模塊,並在其中包含名稱中包含test的所有函數,並嘗試將它們作爲單元測試運行。見http://nose.readthedocs.org/en/latest/man.html 我有一個函數,其名稱是說,make_test_account,在文件accounts.py。我想在名爲test_account的測試模塊中測試該功能。因此,在該文件的開頭我做的: f
我有一個測試函數來操縱對象的內部狀態。該對象使用logging.info()記錄以下內容。 INFO:root:_change: test light red
INFO:root:_change: test light green
INFO:root:_change: test light yellow
我怎樣才能將它納入鼻子或unittest功能,以便我可以有一個類似的測試呢? def