基本上这个问题类似于这个问题:Getting the full RSpec test name from within a before(:each) block

我有这样的代码,它可以工作:

config.before :each do |test|
    p test.example.metadata[:example_group][:full_description]
end

现在我还需要从 before :all 中获取示例组名。我怎么做?

最佳答案

试试这个:

config.before :all do |test|
  p test.class.metadata[:example_group][:full_description]
end

关于rspec - 从 before(:all) block) 中获取 RSpec 示例组名,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10313395/

10-13 02:10