trabajo-afectivo/spec/support/application_handle_info.rb

12 lines
259 B
Ruby
Raw Normal View History

RSpec.configure do |config|
config.around(:each, :application_handle) do |example|
ApplicationHandleInfo.current = example.metadata[:application_handle]
begin
example.run
ensure
ApplicationHandleInfo.current = nil
end
end
end