我有一个非常简单的rspec问题 - 基本上我想这样做:
before { @stub = double(expires_at: 1.day.from_now) }
describe 'after expiration' do
around do |example|
travel_to(@stub.expires_at + 1.minute) # @stub is nil in this context
example.run
travel_back
end
我可以使用before
和after
个钩子实现此目的,但我不想这样做。