对 Rails 中的 simplecov 和 rspec 感到困惑
这是模型中的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否按照自述文件中的说明将 SimpleCov 的设置添加到了 spec_helper 的最顶部(第 1 行)?
Did you add SimpleCov's setup to the very top (line 1) of your spec_helper as stated in the Readme?