Socket
Book a DemoInstallSign in
Socket

env_test_helpers

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

env_test_helpers

0.0.2
bundlerRubygems
Version published
Maintainers
1
Created
Source

EnvTestHelpers

EnvTestHelpers is a collection of helpers to work with environment variables in tests. Right now is only working with Rspec.

Use case:

  • I have configurations set in ignored files, most of this variables are Api keys or passwords.
  • The code and tests needs this variables but I can not share them in my VCS.

Solution:

  • I mock or set this variables in the test they are required.

Installation

Add this line to your application's Gemfile:

gem 'env_test_helpers', group: :test

And then execute:

$ bundle

Or install it yourself as:

$ gem install env_test_helpers

RSpec

All done. The module gets included in the rspec configure block.

Else

Right now only works with RSpec.

Usage

Using the variables inside a block:

it 'does something with the FOO environment variable' do
  with_env_vars 'FOO' => 'bar' do
    # logic that depends upon ENV['FOO'] goes here
  end
end

As a before block:

describe Thing do
  before(:all) do
    mock_env_vars('FOO' => 'bar')
  end
  it 'does something with the FOO environment variable' do
    # logic that depends upon ENV['FOO'] goes here
  end
end

Contributing

  • Fork it ( https://github.com/[my-github-username]/env_test_helpers/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

FAQs

Package last updated on 25 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.