RSpec.configure do |config|
...
config.around(:each) do |example|
example.run # travel_to gets undone once we're back here - as opposed to around(:each)
ensure
RspecExecutiontimeRecorder.record(example)
end
config.after(:suite) do
RspecExecutiontimeRecorder.report
end
...
end
1条答案
按热度按时间myss37ts1#
我讨厌rspec让这件事变得不容易/不明显。这不是你想要的,但这是一个明显的框架:
个字符
你可以只记录每一个的元数据,然后在最后解析它,但也许这会变成很多数据?我只对那些小的计时信息感兴趣,所以我只存储这些信息。