标签: ruby-on-rails
我刚刚升级到Rails 4,我开始在受保护的属性上使用强参数。我通常使用单元测试测试模型受保护的属性,但我不确定如何测试此功能已移至控制器。
我正在使用rspec进行测试。任何建议都会很棒。
答案 0 :(得分:3)
为什么不做呢
post :create, model: { someattrs } response.response_code.should == 400
在您的控制器规格中?