gpt4 book ai didi

ruby-on-rails - RSpec - 测试强参数 ActionController::ParameterMissing

转载 作者:行者123 更新时间:2023-12-04 05:44:39 24 4
gpt4 key购买 nike

如何测试某个操作是否会引发 ActionController::ParameterMissing异常(exception)?

例如:

it "raises an exception" do
post :create, {}
expect(response).to raise ActionController::ParameterMissing
end

以上似乎不起作用,它会通过 ActionController::ParameterMissing 测试失败异常(exception)。

最佳答案

通过 raise_error 使用 expect 块语法匹配器:

it "raises an exception" do
expect{ post(:create, {}) }.to raise_error ActionController::ParameterMissing
end

您的代码不起作用的原因是 post(:create, {})引发异常。这发生在 expect(response).to ... 之前代码得到执行。自 #post消息不在 begin...end块,引发的异常被传递给 RSpec 测试失败。

关于ruby-on-rails - RSpec - 测试强参数 ActionController::ParameterMissing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16724561/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com