錯誤比方說,我有以下的驗證上Model.save
操作來運行:檢查對象上model.save
def max_count
errors.add(:base, 'Cannot save more than 5 records') if self.class.active.count == 5
end
爲什麼我Model.errors
對象nil
在救?
此帖可以作爲參考How to check for a database state before saving new records。
你使用什麼測試框架? –
使用rspect但我用binding.pry()來檢查對象,並沒有看到名稱錯誤的任何屬性 – eugenekgn