:我正在开发框架来交互Rspec和Testrail。我决定使用标签将测试联合到组。完成测试后,我解析example
变量,即Rspec::Example
对象,在这里我需要让它的标签忽略此测试,如果它包含特定标记,则在Testrail中为其设置'blocked'状态。那么有什么方法,比如example.get_tags
我的情况呢?
应该看起来像:
it 'test', tag1: true, tag2: true do
true.should == true
end
after :each do
example.get_tags # tag1: true, tag2: true
end
答案 0 :(得分:2)
在example.metadata
找到它,问题已关闭。