gitlab-org--gitlab-foss/spec/support/helpers/sentry_client_helpers.rb

15 lines
352 B
Ruby

# frozen_string_literal: true
module SentryClientHelpers
private
def stub_sentry_request(url, http_method = :get, body: {}, status: 200, headers: {})
stub_request(http_method, url)
.to_return(
status: status,
headers: { 'Content-Type' => 'application/json' }.merge(headers),
body: body.to_json
)
end
end