summaryrefslogtreecommitdiff
path: root/spec/support/helpers/rails_helpers.rb
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