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

stub_env.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2999bcd9fb15b299c42d67398d393f8167f6f609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module StubENV
  def stub_env(key, value)
    allow(ENV).to receive(:[]).and_call_original unless @env_already_stubbed
    @env_already_stubbed ||= true
    allow(ENV).to receive(:[]).with(key).and_return(value)
  end
end

# It's possible that the state of the class variables are not reset across
# test runs.
RSpec.configure do |config|
  config.after(:each) do
    @env_already_stubbed = nil
  end
end