为什么 rake 任务输出总是以类似测试单元的结果结束?
从前一段时间开始,我运行的所有 rake 任务的所有输出最终都有类似测试/单元的结果:
Finished in 0.002001 seconds.
0 tests, 0 assertions, 0 failures, 0 errors
即使我运行 rake --tasks 也会显示它。
Since some time ago all output of all rake tasks I run has test/unit-like result in the end:
Finished in 0.002001 seconds.
0 tests, 0 assertions, 0 failures, 0 errors
It is shown even if I run rake --tasks
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据评论,这个问题已经得到解答。
为了未来的谷歌用户的利益,我不确定为什么你想要在 rake 文件中而不是在测试文件中要求测试单元。
This question has been answered, according to the comments.
For the benefit of future googlers, I'm not sure why you would want to require test unit within a rake file, rather than within the test file.
我在我的一个 rake 文件之上有
require 'test/unit'
。I had
require 'test/unit'
on top of one of my rake files.