是否有rspec助手来测试更新验证?

时间:2013-04-04 14:19:59

标签: ruby-on-rails activerecord rspec rspec2

我正在使用以下验证

“validates_presense_of:column,:on =>:update”

是否有rspec提供的帮助器来测试上述内容?

2 个答案:

答案 0 :(得分:0)

也许:

describe ThingsController, "#update" do
  context "for a thing" do
    before do
      get :update, :id => 1
    end
    it { should validate_presence_of :your_column_name }
  end
end

答案 1 :(得分:0)