To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorConfigure the aruba console history file
As a developer
I want to configure the history file of aruba console
In order to have a better isolation of tests
- Background
-
- Given
- I use the fixture "cli-app"
- Scenarios
-
- Default value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| puts %(The default value is "#{config.console_history_file}") end
- When
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "~/.aruba_history"
- Set some value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| config.console_history_file = '~/.config/aruba/history.txt' end Aruba.configure do |config| puts %(The value is "#{config.console_history_file}") end
- Then
-
I successfully run
cucumber
- Then
-
the output should contain:
The value is "~/.config/aruba/history.txt"
Last published almost 6 years ago by philoserf.