Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚升级到 Rails 4,我已经开始使用强参数而不是受保护的属性。我通常使用单元测试来测试模型受保护的属性,但现在我不确定如何测试此功能已移至控制器。
我正在使用 rspec 进行测试。任何建议都会很棒。
为什么不只是做
post :create, model: { someattrs } response.response_code.should == 400
在您的控制器规格中?