同时使用 rspec 和 cucumber 时将 VCR 配置放在哪里

发布于 2024-10-22 04:50:43 字数 158 浏览 1 评论 0原文

我同时使用 rspec 和黄瓜。 Cucumber 集成级别测试,但 rspec 用于单元测试。

我已经将 vcr 用于 cucumber,但也想将其用于 rspec。放置录像机配置的正确位置在哪里?我不想在 features/support 和 rspec/support 中复制它。

I'm using both rspec and cucumber. Cucumber of integration level tests, but rspec for unit tests.

I'm using vcr for cucumber already, but want to use it for rspec, too. Where's the right place to put the vcr configuration? I'd rather not replicate it in both features/support and rspec/support.

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

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

发布评论

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

评论(1

是你 2024-10-29 04:50:43

Cucumber 不“了解”RSpec,反之亦然。如果您不想重复它,请将其定义在自己的文件中,例如 spec/support/vcr_setup.rb,然后将其包含在两个文件中。

features/support/env.rb
需要 File.expand_path("../../../spec/support/vcr_setup", __FILE__)
(认为​​正确,根据需要调整路径)

spec/spec_helper.rb
需要“support/vcr_setup”

Cucumber doesn't "know" about RSpec, nor vice-versa. If you don't want to duplicate it, define it in its own file, say spec/support/vcr_setup.rb, and then include that in both.

features/support/env.rb:
require File.expand_path("../../../spec/support/vcr_setup", __FILE__)
(think that's right, adjust path as needed)

spec/spec_helper.rb:
require "support/vcr_setup"

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