3
:我正在開發框架以實現Rspec和Testrail。我決定使用標籤將測試聯合到組中。完成測試後,我解析example
變量,這是Rspec::Example
對象,在這裏我需要讓它的標記忽略這個測試,如果它包含特定的標記,那麼在Testrail中設置'blocked'狀態。那麼是否有任何方法,例如example.get_tags
適合我的情況?獲取Rspec示例標籤
它不應該是這樣的:
it 'test', tag1: true, tag2: true do
true.should == true
end
after :each do
example.get_tags # tag1: true, tag2: true
end