获取Rspec示例标记

时间:2014-02-24 08:31:53

标签: rspec

:我正在开发框架来交互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

1 个答案:

答案 0 :(得分:2)

example.metadata找到它,问题已关闭。