Module: G5Authenticatable::Test::EnvHelpers

Defined in:
lib/g5_authenticatable/test/env_helpers.rb

Overview

Helper methods for stubbing environment variables

Instance Method Summary collapse

Instance Method Details

#stub_env_var(name, value) ⇒ Object



7
8
9
# File 'lib/g5_authenticatable/test/env_helpers.rb', line 7

def stub_env_var(name, value)
  stub_const('ENV', ENV.to_hash.merge(name => value))
end