Rspec2:模拟类方法,但不是全部
我编写了一个类方法,它调用同一类的其他类方法。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够对
do_something
设置期望,然后直接调用update_statistic
。You should be able to set an expectation on
do_something
and then callupdate_statistic
directly.