在 Mocha 中取消类方法的存根
对于特定测试,我想更改类方法的返回值。
我可以通过调用 MyClass.expects(:method).returns(:myvalue) 获得正确的行为。完成测试后,如何停止这种行为?
Mocha 中有一个 unstub
方法,但它似乎只适用于实例方法,而不适用于类方法。
For a particular test, I want to change the return value of a class method.
I can get the correct behavior by calling MyClass.expects(:method).returns(:myvalue). How can I stop this behavior once I'm done with the test?
There's an unstub
method in Mocha, but it appears to only work on instance methods, not class methods.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的摩卡是什么版本?
这适用于 MRI / mocha 0.9.12:
What version number of mocha are you using?
This works in MRI / mocha 0.9.12: