stubs:
create fake object, and assume this fake object can response what information, response, make sure the main tested object can get the consistent result
mocks
same with stubs, but must be executed
比如說, 現在要去測試一下Twitter是不是成功發了一條推文:
|
|
測試代碼:
|
|
但是這真的會把你的推文發生出去,還有,如果網絡環境不好或者Twitter的服務器沒有及時處理請求,那麼我這邊的測試就會跑不通,等等問題.
正因為如此,才需要把使用Twitter服務的部分用mock代替.這樣測試就不會和Twitter進行交互了.下面是使用mock後的測試:
|
|
allow (想要替換方法的對象) . to receive (所要替換的方法) . and_return (返回值對象)
allow (mock對象) . to receive (方法) . and_raise (異常)