Sha256: 11d2da24c7bbab0b84b135c39eff6824d0e7f0b316d056ebfb7efe94c22f42cb

Contents?: true

Size: 1.99 KB

Versions: 7

Compression:

Stored size: 1.99 KB

Contents

Feature: Delete 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_command('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_command('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_command('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

7 entries across 7 versions & 1 rubygems

Version Path
aruba-0.14.14 features/04_aruba_api/environment/delete_environment_variable.feature
aruba-0.14.13 features/04_aruba_api/environment/delete_environment_variable.feature
aruba-0.14.12 features/04_aruba_api/environment/delete_environment_variable.feature
aruba-0.14.11 features/04_aruba_api/environment/delete_environment_variable.feature
aruba-0.14.10 features/04_aruba_api/environment/delete_environment_variable.feature
aruba-0.14.9 features/api/environment/delete_environment_variable.feature
aruba-0.14.8 features/api/environment/delete_environment_variable.feature