summaryrefslogtreecommitdiff
path: root/spec/bundler/support/artifice/endpoint_timeout.rb
blob: 3f60471c907d036b9f61c35a167e3e6111d3abac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require File.expand_path("../endpoint_fallback", __FILE__)

Artifice.deactivate

class EndpointTimeout < EndpointFallback
  SLEEP_TIMEOUT = 3

  get "/api/v1/dependencies" do
    sleep(SLEEP_TIMEOUT)
  end
end

Artifice.activate_with(EndpointTimeout)