在我的工厂中,我有一个布尔字段(已评估),我试图将其设置为false。我希望该字段是必需的,并始终设置为 true 或 false
模型
validates_presence_of :evaluated
厂
FactoryGirl.define do
factory :submission do
evaluated true
score 1.5
ranking 1.5
submission_type "user"
.
.
end
end
在测试中
it { should validate_presence_of(:evaluated) }
我跑的时候
Failure/Error: expect(@submission).to be_valid
expected #<Submission id: nil, competition_id: 163, user_id: 134, team_id: nil, evaluated: false, score: 1.5, ranking: 1.5, submission_type_cd: "user", withdrawn: true, withdrawn_date: "2016-02-08", created_at: nil, updated_at: nil> to be valid, but got errors: Evaluated can't be blank
如果我将值更改为true,则测试通过
evaluated true
如何为布尔值设置错误值的工厂?
答案 0 :(得分:13)
我宁愿使用inclusion_of
验证代替presence
验证。
从导轨doc,
如果要验证是否存在布尔字段(实际值为true和false),则需要使用
validates_inclusion_of :field_name, in: [true, false]
这是由于Object#blank?
处理布尔值的方式
即false.blank? # => true
那么你的测试就像是,
it { should ensure_inclusion_of(:field_name).in_array([true, false]) }