Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dependency_proxy_helpers_shared_context.rb « packages « helpers « api « lib « shared_contexts « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1963248142c49c02147fe1644970080865d42679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

RSpec.shared_context 'dependency proxy helpers context' do
  def allow_fetch_cascade_application_setting(attribute:, return_value:)
    allow(Gitlab::CurrentSettings).to receive(:public_send).with(attribute.to_sym).and_return(return_value)
    allow(Gitlab::CurrentSettings).to receive(:public_send).with("lock_#{attribute}").and_return(false)
  end

  def allow_fetch_application_setting(attribute:, return_value:)
    attributes = double
    allow(::Gitlab::CurrentSettings.current_application_settings).to receive(:attributes).and_return(attributes)
    allow(attributes).to receive(:fetch).with(attribute, false).and_return(return_value)
  end
end