为什么should_change宏会在shoulda 2.11.0中导致弃用警告

发布于 2024-09-05 22:55:19 字数 324 浏览 4 评论 0原文

弃用警告:您正在使用已弃用的行为,该行为将从下一个主要或次要版本中删除。 (从 /usr/local/lib/ruby/gems/1.8/gems/shoulda-2.11.0/lib/shoulda/macros.rb:40 处的 should_change 调用)

例如,应该如何将这种测试更改为在没有警告的情况下工作有了新的应该:

fast_context "a" do
  setup do
    ...
  end

  should_change("message", :by => 1) { Messages.count }      
end

DEPRECATION WARNING: You are using deprecated behavior which will be removed from the next major or minor release. (called from should_change at /usr/local/lib/ruby/gems/1.8/gems/shoulda-2.11.0/lib/shoulda/macros.rb:40)

How e.g. this kind of test should be changed to work without a warning with new shoulda:

fast_context "a" do
  setup do
    ...
  end

  should_change("message", :by => 1) { Messages.count }      
end

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

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

发布评论

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

评论(1

心不设防 2024-09-12 22:55:19

http://robots.thoughtbot.com/post/731871832/ this-should-change-your-mind

好文章,解释了如何处理 should_change 宏。

http://robots.thoughtbot.com/post/731871832/this-should-change-your-mind

Good article, explaining how to deal with should_change macros.

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