列出所有可用的标签黄瓜

时间:2010-11-11 20:15:35

标签: cucumber

是否有命令行选项列出黄瓜测试套件中的所有标签?

例如,我想要类似的东西:

cucumber --show-tags foo.feature

这会给我一些类似的东西:

@ci
@development
@regression
@wip

1 个答案:

答案 0 :(得分:4)

对于单个文件:

cucumber -f tag_cloud foo.feature

您还可以在目录中找到所有功能的标记:

cucumber -f tag_cloud features/login

甚至与特定标签共享的功能:

cucumber --format tag_cloud --tags @bvt

为所有这些生成的输出是一个wiki样式表:

| @baseline | @customer | @demographics | @performance |
| 1         | 1         | 1             | 1            |