我有以下錯誤:臭佬錯誤RepeatedConditional
tests @action.placed.!=(true) at least 3 times (RepeatedConditional)
從下面的代碼生成:
def left
super unless @action.placed != true
end
def right
super unless @action.placed != true
end
def move_forward
super unless @action.placed != true
end
如何將我們擺脫這種重複的?
別名與他所擁有的代碼不太一樣。認爲代碼看起來很相似,對super的調用就是調用不同的方法 –