Sha256: 2f95e5ee582e67b1d945faff4bd6f82e3aa15d50fba269b9a206cf9c6a453990

Contents?: true

Size: 1.97 KB

Versions: 11

Compression:

Stored size: 1.97 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('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 & 2 rubygems

Version Path
aruba-0.14.7 features/api/environment/delete_environment_variable.feature
aruba-0.14.6 features/api/environment/delete_environment_variable.feature
aruba-0.14.5 features/api/environment/delete_environment_variable.feature
aruba-0.14.4 features/api/environment/delete_environment_variable.feature
aruba-0.14.3 features/api/environment/delete_environment_variable.feature
aruba-win-fix-0.14.2 features/api/environment/delete_environment_variable.feature
aruba-0.14.2 features/api/environment/delete_environment_variable.feature
aruba-0.14.1 features/api/environment/delete_environment_variable.feature
aruba-0.14.0 features/api/environment/delete_environment_variable.feature
aruba-0.13.0 features/api/environment/delete_environment_variable.feature
aruba-0.12.0 features/api/environment/delete_environment_variable.feature