我正在使用以下验证
“validates_presense_of :column, :on => :update”
rspec 是否提供了帮助程序来测试上述内容?
我正在使用以下验证
“validates_presense_of :column, :on => :update”
rspec 是否提供了帮助程序来测试上述内容?
也许:
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
找到了这个,这正是我想要的
http://remarkable.rubyforge.org/activerecord/classes/Remarkable/ActiveRecord/Matchers.html