否定assert_difference?

发布于 2024-10-10 18:39:20 字数 228 浏览 2 评论 0原文

我正在做功能测试,刚刚发现了assert_difference,如:

assert_difference('Account.count') do
  post :create, :account => @account.attributes
end

是否有一个对应项,可以检查Account.count是否没有更改?

I am doing functional tests and just discovered assert_difference, as in:

assert_difference('Account.count') do
  post :create, :account => @account.attributes
end

Is there a counterpart, which would check if Account.count has not changed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水溶 2024-10-17 18:39:20
assert_no_difference(expression, message = nil, &block)

来自文档:“断言计算表达式的数值结果是在调用传入块之前和之后没有改变。”

assert_no_difference(expression, message = nil, &block)

From the docs: "Assertion that the numeric result of evaluating an expression is not changed before and after invoking the passed in block."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文