对 Rails 中的 simplecov 和 rspec 感到困惑

发布于 2024-12-05 09:31:41 字数 284 浏览 2 评论 0原文

这是模型中的代码:

  def find_tech
   Category.find_by_name("tech")
  end

这是 rspec 测试:

  x = Category.find_tech
  x.name.should == "tech"

并且测试通过。但rcov不这么认为。

首先为什么不呢?

其次,如果我确实必须更改某些内容,那么 simplecov 有什么好处?

This is code in a model:

  def find_tech
   Category.find_by_name("tech")
  end

and this is the rspec test:

  x = Category.find_tech
  x.name.should == "tech"

and the test passes. But rcov doesn't think so.

First of all why not ?

Second, if I do have to change something then what good is simplecov ?

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

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

发布评论

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

评论(1

鱼忆七猫命九 2024-12-12 09:31:41

您是否按照自述文件中的说明将 SimpleCov 的设置添加到了 spec_helper 的最顶部(第 1 行)?

require 'simplecov'
SimpleCov.start 'rails

Did you add SimpleCov's setup to the very top (line 1) of your spec_helper as stated in the Readme?

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