如果没有可用标签,则运行标记规格或全部
我将 Guard 与 rspec 和黄瓜一起使用。为了连续运行选定的规范,我只需使用 focus
标签来确定我想要处理的内容。
但问题是,如果没有带有该标签的规范,我想运行所有规范。
我怎样才能做到这一点?
注意::我知道所有 RSpec 选项。因此,请仅在阅读问题后回复。
I'm using guard with rspec and cucumber. To run the selected specs continuously, I just use focus
tag to nail what I want to work on.
But the problem is that I want to ran all of the specs if there are no specs with that tag.
How can I do that?
NOTE:: I am aware of all the RSpec options. So please reply only after you've read the question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过以下配置实现了您所描述的行为:
I achieve the behavior you've described with the following config:
您考虑过使用自动测试吗?这会让你或多或少获得相同的行为,而不需要标签。
Have you considered using Autotest? That gets you more or less the same behavior without needing tags.