我应该在哪里放置 Rails 单元测试的通用设置代码?

发布于 2024-08-19 07:02:07 字数 95 浏览 3 评论 0原文

我想在所有单元测试之前存根一个 Web 服务代理。我可以在每个单元测试中调用一些共享代码,但我想知道是否有更好的方法。

我正在使用应该达。

谢谢

I would like to stub a web service proxy before all my unit tests. I could call some shared code in each unit test, but I was wondering if there is a better way.

I am using Shoulda.

Thanks

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

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

发布评论

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

评论(2

在 test/test_helper 中,您可以执行以下操作:

class ActiveSupport::TestCase
  def stub_some_stuff
    …
  end

  setup :stub_some_stuff
end

小心确保您不只是将其放在设置块之外来执行一次,这样做可能会导致存根被第一个测试以及所有未来的测试撕毁请求直接通过!

in test/test_helper you can do the following:

class ActiveSupport::TestCase
  def stub_some_stuff
    …
  end

  setup :stub_some_stuff
end

Be careful to ensure you don't just do it once by putting it outside of a setup block, doing so may result in the stub being torn down by the first test, and then all future requests just go straight through!

滥情哥ㄟ 2024-08-26 07:02:07

test/test_helper 是通用代码的好地方 - 这将被注入到您的测试用例中

test/test_helper is a good place for common code - this will be injected into your TestCases

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