SimpleCov rspec 和 cucumber 分别

发布于 2024-09-19 18:04:29 字数 83 浏览 6 评论 0原文

你能告诉我如何设置 simplecov 来测试带有 rspec 的模型和仅带有黄瓜的控制器吗? 我不喜欢 rspec 和黄瓜覆盖率混合在一起......

Could you tell me how to setup simplecov to test models with rspec and controller with cucumber only?
I don't like it that rspec and cucumber coverage are mixed together...

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

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

发布评论

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

评论(2

烧了回忆取暖 2024-09-26 18:04:29

SimpleCov.coverage_dir 'coverage'

这将允许您设置覆盖率信息所在的目录。因此,配置它的一种方法是将它们放在

if RUBY_VERSION > "1.9"
  require 'simplecov'
  SimpleCov.start 'rails'
  SimpleCov.coverage_dir 'coverage/rspec'
end

test_helper 内部,并

if RUBY_VERSION > "1.9"
  require 'simplecov'
  SimpleCov.start 'rails'
  SimpleCov.coverage_dir 'coverage/cucumber'
end

放在 features/support/env.rb 内部,

这应该将它们分开。您可能还想确保单独运行测试,这样就不会合并它们。

SimpleCov.coverage_dir ‘coverage’

This will allow you to set the directory where the coverage information will go. So one way to configure it will be to put

if RUBY_VERSION > "1.9"
  require 'simplecov'
  SimpleCov.start 'rails'
  SimpleCov.coverage_dir 'coverage/rspec'
end

inside of your test_helper, and

if RUBY_VERSION > "1.9"
  require 'simplecov'
  SimpleCov.start 'rails'
  SimpleCov.coverage_dir 'coverage/cucumber'
end

inside of features/support/env.rb

That should separate them. You probably also want to make sure to run the tests separately so that it doesn't merge them.

千柳 2024-09-26 18:04:29

嗯...没有答案..我的解决方案是从测试框架之一中删除 require 行并单独运行测试...

Hmmm... no answer.. my solution was to remove the require line from one of the test-frameworks and run the test separately...

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