Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test command line #1316

Merged
merged 17 commits into from
Jul 8, 2024
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
raviqqe committed Jul 8, 2024
commit 3a9f7a9e8fb38e1c861adcae0091b7f28d94cebb
4 changes: 2 additions & 2 deletions features/process-context/environment-variable.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Feature: Environment variables
(write-string (cdr (get-environment-variable "FOO")))
"""
And I set the environment variable "FOO" to "bar"
When I successfully run `scheme main.scm hello`
When I successfully run `scheme main.scm`
Then the stdout should contain exactly "bar"

Scenario: Get environment variables
Expand All @@ -25,6 +25,6 @@ Feature: Environment variables
"""
And I set the environment variable "FOO" to "bar"
And I set the environment variable "BAZ" to "qux"
When I successfully run `scheme main.scm hello`
When I successfully run `scheme main.scm`
Then the stdout should contain "FOO=bar"
And the stdout should contain "BAZ=qux"
Loading