4

基本上这个问题类似于这个问题: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。我怎么做?

4

1 回答 1

3

试试这个:

config.before :all do |test|
  p test.class.metadata[:example_group][:full_description]
end
于 2012-04-25T14:31:25.963 回答