Module: cli_bdd.core.steps.environment

set_the_environment_variable

Sets the environment variable.

Examples:

Given I set the environment variable "hello" to "world"

Matcher:

I set the environment variable "(?P<variable>.*)" to "(?P<value>.*)"

append_to_the_environment_variable

Appends a value to the environment variable.

Examples:

Given I append "world" to the environment variable "hello"

Matcher:

I append "(?P<value>.*)" to the environment variable "(?P<variable>.*)"

prepend_to_the_environment_variable

Prepends a value to the environment variable.

Examples:

Given I prepend "world" to the environment variable "hello"

Matcher:

I prepend "(?P<value>.*)" to the environment variable "(?P<variable>.*)"

set_the_environment_variables

Populates the set of the environment variables.

Examples:

Given I set the environment variables to:
    | variable | value |
    | age      | 25    |
    | name     | gena  |

Matcher:

I set the environment variables to

append_the_values_to_the_environment_variables

Appends the values to the set of the environment variables.

Examples:

I append the values to the environment variables:
    | variable | value |
    | age      | 1     |
    | name     | a     |

Matcher:

I append the values to the environment variables

prepend_the_values_to_the_environment_variables

Prepends the values to the set of the environment variables.

Examples:

I prepend the values to the environment variables:
    | variable | value |
    | age      | 1     |
    | name     | a     |

Matcher:

I prepend the values to the environment variables