我有一个before_save :autofill_country_code
的模型,它将填充缺失的值。但是,当我运行我的rspec测试时,似乎没有运行before_save。
我撬开了我的测试,保存没有更新属性。
我该如何解决这个问题?
it "should autofill country code" do
empty_country_code = ''
@store = Factory.build(:store, :country_code => empty_country_code)
expect{ @store.save }.to change{ @store.country_code }.from('').to(1)
end
以下是我的自动填充代码:
def autofill_country_code
unless self.country_code.present?
country = GeoCache.geocode(self.city).country_code
country_code = IsoCountryCodes.find(country).calling
self.country_code = country_code.tr('+', '')
end
end
答案 0 :(得分:2)
您是否为country_code
设置了验证?挂钩按以下顺序执行:
before_validation
after_validation
before_save
around_save
before_create
around_create
after_create
after_save
因此,如果model无效,则不会执行before_save hook。请改为before_validation :autofill_country_code
。