Shoulda/RSpec matchers - conditional validation

冷暖自知 提交于 2019-12-03 01:28:33

问题


In my code I had the following validation with Shoulda matchers, which works fine:

it { should validate_presence_of(:name) }

In my model, I've added the condition to my validation:

validates_presence_of :name, :if => eligible?

Is it possible to reflect it in the validations?

I've tried looking at documentation for shoulda matchers, but haven't been able to locate the solution.

Many thanks!


回答1:


It doesn't appear that shoulda_matchers does this, but it's easy enough to write it yourself::

  context "if eligible" do
    before { allow(subject).to receive(:eligible?).and_return(true) }
    it { should validate_presence_of(:name) }
  end

  context "if ineligible" do
    before { allow(subject).to receive(:eligible?).and_return(false) }
    it { should_not validate_presence_of(:name) }
  end


来源:https://stackoverflow.com/questions/13812717/shoulda-rspec-matchers-conditional-validation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!