aboutsummaryrefslogtreecommitdiffstats
path: root/spec/bundler/support/artifice/endpoint_timeout.rb
blob: b15650f226cbf7ac65c3bd99c1eef4993bacbacc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
require File.expand_path("../endpoint_fallback", __FILE__)

Artifice.deactivate

class EndpointTimeout < EndpointFallback
  SLEEP_TIMEOUT = 15

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

Artifice.activate_with(EndpointTimeout)