使用 ruby 衡量单个规范的代码覆盖率的最佳方法是什么?
我通常会使用 rake spec:rcov 来衡量所有测试的代码覆盖率。
我想要一种方法来测量一个规范的代码覆盖率,以帮助确保每个模型的规范正在测试完整的模型,而不是依赖于其他测试中的副作用。
有什么想法吗?
I typically do rake spec:rcov
but that measures code coverage across all tests.
I would like a way to measure code coverage from one spec to help ensure that each model's spec is testing the full model rather relying on side effects in other tests.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能不完全理解你的问题,但如果你试图规范你的代码的一部分,这个命令应该可以做到。
我在这里读到了它: http://eigenclass.org/hiki.rb?rcov#l6
I might not be understanding your question exactly, but if you are trying to spec just a portion of your code, this command should do it.
I read about it here: http://eigenclass.org/hiki.rb?rcov#l6