Sha256: 1a33f4f46b4916bd0ee2391c54e74b598d9b3a99ebe1a3504fa0f98c256acb92

Contents?: true

Size: 1.97 KB

Versions: 11

Compression:

Stored size: 1.97 KB

Contents

Feature: Remove existing environment variable via API-method

  It is quite handy to modify the environment of a process. To make this
  possible, `aruba` provides several methods. One of these is
  `#delete_environment_variable`. Using this remove an existing variable.

  Background:
    Given I use the fixture "cli-app"

  Scenario: Non-existing variable
    Given a file named "spec/environment_spec.rb" with:
    """ruby
    require 'spec_helper'

    RSpec.describe 'Long running command', :type => :aruba do
      before(:each) { delete_environment_variable 'LONG_LONG_VARIABLE' }

      before(:each) { run('env') }
      before(:each) { stop_all_commands }

      it { expect(last_command_started.output).not_to include 'LONG_LONG_VARIABLE=1' }
    end
    """
    When I run `rspec`
    Then the specs should all pass

  Scenario: Existing variable set from within the test
    Given a file named "spec/environment_spec.rb" with:
    """ruby
    require 'spec_helper'

    RSpec.describe 'Long running command', :type => :aruba do
      before(:each) { set_environment_variable 'LONG_LONG_VARIABLE', '1' }
      before(:each) { delete_environment_variable 'LONG_LONG_VARIABLE' }

      before(:each) { run('env') }
      before(:each) { stop_all_commands }

      it { expect(last_command_started.output).not_to include 'LONG_LONG_VARIABLE' }
    end
    """
    When I run `rspec`
    Then the specs should all pass

  Scenario: Existing variable set by some outer parent process

    Given a file named "spec/environment_spec.rb" with:
    """ruby
    require 'spec_helper'

    ENV['REALLY_LONG_LONG_VARIABLE'] = '1'

    RSpec.describe 'Environment command', :type => :aruba do
      before(:each) { delete_environment_variable 'REALLY_LONG_LONG_VARIABLE' }

      before(:each) { run('env') }
      before(:each) { stop_all_commands }

      it { expect(last_command_started.output).not_to include 'REALLY_LONG_LONG_VARIABLE' }
    end
    """
    When I run `rspec`
    Then the specs should all pass

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
aruba-0.11.2 features/api/environment/remove_environment_variable.feature
aruba-0.11.1 features/api/environment/remove_environment_variable.feature
aruba-0.11.0.pre4 features/api/environment/remove_environment_variable.feature
aruba-0.11.0.pre3 features/api/environment/remove_environment_variable.feature
aruba-0.11.0.pre2 features/api/environment/remove_environment_variable.feature
aruba-0.11.0.pre features/api/environment/remove_environment_variable.feature
aruba-0.10.2 features/api/environment/remove_environment_variable.feature
aruba-0.10.1 features/api/environment/remove_environment_variable.feature
aruba-0.10.0 features/api/environment/remove_environment_variable.feature
aruba-0.10.0.pre2 features/api/environment/remove_environment_variable.feature
aruba-0.10.0.pre features/api/environment/remove_environment_variable.feature