Ruby 中的模拟:模拟在测试之间持续存在

发布于 2024-09-28 05:10:35 字数 299 浏览 1 评论 0原文

我使用 RR 作为我个人项目的模拟框架。我一直在使用它来模拟某些类的新方法,当我运行测试时,它们通过得很好,但是当我运行所有测试时,我遇到了一个问题,似乎“新”方法仍然返回即使在不同的测试文件中,结果也是假的。有没有办法手动关闭新方法的存根?我在这里缺少什么?

感谢您的帮助, 亚历克斯(Alex)

我尝试将此代码放入我的应用程序中,但它破坏了应用程序,并且......并没有解决上述问题。

RSpec.configure do |config|
  config.mock_with :rr
end

I'm using RR as the mocking framework for a personal project of mine. I've been using it to mock the new method for some classes and when I run the tests they pass fine, but when I run ALL of the tests I run into a problem where it seems like the "new" methods are still returning the fake results, even when in a different test file. Is there a way to turn off the stubbing of the new method manually? What am I missing here?

Thanks for the help,
Alex

I've tried putting this code into my app and it breaks the app, and.... doesn't fix the above problem.

RSpec.configure do |config|
  config.mock_with :rr
end

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

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

发布评论

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

评论(2

落花浅忆 2024-10-05 05:10:35

模拟正在取代您的旧方法。一旦某个方法被您的模拟替换,除非您采取预防措施,否则它将永远不会再正常。

看看

Mocks are replacing your old methods. Once a method is replaced by your mock it will never be normal again unless you using precautions.

Take a look at this thread. I explained there how one can undo Mocha mocks using simple alias.

吃不饱 2024-10-05 05:10:35

RSpec 的模拟会在测试之间自动拆除。但是,当您将 RSpec 配置为使用另一个库进行模拟时,您仍然必须通过 RSpec 模拟 API 使用它

RSpec's mocks are torn down automatically between tests. However, when you configure RSpec to mock with another library, you still have to use it through the RSpec mocking API.

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