Shoulda / RSpec匹配器 - 条件验证

时间:2012-12-11 02:31:31

标签: ruby-on-rails ruby rspec shoulda

在我的代码中,我使用了Shoulda匹配器进行了以下验证,效果很好:

it { should validate_presence_of(:name) }

在我的模型中,我已将条件添加到我的验证中:

validates_presence_of :name, :if => eligible?

是否可以在验证中反映出来?

我已经尝试过documentation查看shoulda匹配器,但无法找到解决方案。

非常感谢!

1 个答案:

答案 0 :(得分:126)

似乎shoulda_matchers没有这样做,但是很容易自己编写::

  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