如何测试是否在对象上调用方法 - Rails RSpec

发布于 2024-12-05 11:44:48 字数 172 浏览 2 评论 0原文

我有两个模型,Foo 和 Bar。 Foo 有一个名为ask_bar_to_do_something 的方法,该方法在保存Foo 实例后调用。此方法不会更改此 Foo 实例的状态。

我正在考虑让这个方法返回 1,并创建一个 lambda 块来创建 Foo 对象并检查返回值。有更好的方法吗?

谢谢。

I have two models, Foo and Bar. Foo has a method called ask_bar_to_do_something, which is called after an instance of Foo is saved. This method does not change state of this Foo instance.

I am thinking of making this method to return 1, and create a lambda block that create Foo object and check the return value. Is there a better way to do this?

Thank you.

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

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

发布评论

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

评论(1

再见回来 2024-12-12 11:44:48

为什么不模拟对象并期望方法调用?

class Foo < ActiveRecord::Base
  after_create :ask_bar_to_do_something

  def ask_bar_to_do_something
    #blah blah blah
  end
end

如果您使用工厂来创建对象,

Foo.any_instance.should_receive(:ask_bar_to_do_something)
Factory(:foo)

否则

foo = Foo.new(:attr1 => 'value1', :attr2 => 'value2')
foo.should_receive(:ask_bar_to_do_something)
foo.save

Why not mock the object and expect the method call?

class Foo < ActiveRecord::Base
  after_create :ask_bar_to_do_something

  def ask_bar_to_do_something
    #blah blah blah
  end
end

If you are using factory to create the object

Foo.any_instance.should_receive(:ask_bar_to_do_something)
Factory(:foo)

Else

foo = Foo.new(:attr1 => 'value1', :attr2 => 'value2')
foo.should_receive(:ask_bar_to_do_something)
foo.save
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文