我想在调试期间在 Rails 日志中显示每个示例的描述。我不太清楚这是怎么做到的。我看过使用 RSpec.configure 做这样的事情:
RSpec.configure do |config|
config.before(:each) do |example|
Rails.logger.debug example.description
end
end
但这只会给出 NoMethodError ,因为此时它找不到描述。我认为它可能会像#around 那样工作,但我猜不是。