Sha256: 60ac33b22bf15b4176eaa80f70e046abf513fa0286327a1e4ca6027c13599b18

Contents?: true

Size: 803 Bytes

Versions: 7

Compression:

Stored size: 803 Bytes

Contents

Feature: Command environment variables

  In order to test command line applications which make use of environment variables
  As a developer using Cucumber
  I want to use the command environment variable step

  Scenario: Changing the environment
    Given I set the environment variables to:
      | variable           | value      |
      | LONG_LONG_VARIABLE | long_value |
    When I run `/usr/bin/env`
    Then the output should contain:
      """
      long_value
      """

  Scenario: Mocked home directory
    Given a mocked home directory
    When I run `/usr/bin/env`
    Then the output should contain:
    """
    tmp/aruba
    """

  @mocked_home_directory
  Scenario: Mocked home directory
    When I run `/usr/bin/env`
    Then the output should contain:
    """
    tmp/aruba
    """

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
aruba-0.7.4 features/command_environment_variables.feature
aruba-0.7.3 features/command_environment_variables.feature
aruba-0.7.2 features/command_environment_variables.feature
aruba-0.7.1 features/command_environment_variables.feature
aruba-0.7.0 features/command_environment_variables.feature
aruba-0.6.2 features/command_environment_variables.feature
aruba-0.6.1 features/command_environment_variables.feature