Rspec 输出格式
这个问题更多的是出于好奇而不是目的。我们可以更改 Rspec 命令的输出吗,它显示点和 Fs。例如,以下是我的一个项目的输出:
.F.F.F.F
.....
........
Finished in 0.27137 seconds
8 examples, 4 failures
Can we get Pass Failed Pass Failed Pass Failed Pass Failed 而不是 .FFFF
This question is more out of curiosity than purpose. Can we change the output of Rspec command, where it shows dots and Fs. For example, here is an output from one of my projects:
.F.F.F.F
.....
........
Finished in 0.27137 seconds
8 examples, 4 failures
Can we get Pass Failed Pass Failed Pass Failed Pass Failed instead of .F.F.F.F
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确实可以,查看 rspec wiki 或 google 'rspec Progressformatter' -- 这是一个这做的事情非常接近你想要的。
You indeed can, check out the rspec wiki or google 'rspec progressformatter' -- here's one that does something very close to what you want.
颜色可能会有所帮助 - 将别名
spec=spec --color --format specdoc
添加到您的~/.bashrc
文件中。Color might help a bit - add the alias
spec=spec --color --format specdoc
to your~/.bashrc
file.