为什么should_change宏会在shoulda 2.11.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.