Rspec2:模拟类方法,但不是全部

发布于 2024-10-19 17:19:12 字数 260 浏览 0 评论 0原文

我编写了一个类方法,它调用同一类的其他类方法。

class Statistic
  def self.do_something
    #...
  end

  def self.update_statistic
    Statistic.do_something
  end
end

我如何测试 update_statistic 调用 do_something?

我使用 Rails 3 & rspec 2.

I've wrote a class method, which calls other class methods of the same class.

class Statistic
  def self.do_something
    #...
  end

  def self.update_statistic
    Statistic.do_something
  end
end

How do I test, that update_statistic calls do_something?

I use Rails 3 & rspec 2.

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

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

发布评论

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

评论(1

吐个泡泡 2024-10-26 17:19:12

您应该能够对 do_something 设置期望,然后直接调用 update_statistic

Statistic.should_receive(:do_something)
Statistic.update_statistic

You should be able to set an expectation on do_something and then call update_statistic directly.

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