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

rails_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1875b2fb15ee46bf95073bbc2cabcbefec8528c (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module RailsHelpers
  def stub_rails_env(env_name)
    allow(Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new(env_name))
  end
end