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 if ansi color codes should be stripped off from command output
As a developer
I want to strip off ansi color codes
In order to make checking of those outputs easier
- 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.remove_ansi_escape_sequences}") end
- When
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "true"
- Modify value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| config.remove_ansi_escape_sequences = false end Aruba.configure do |config| puts %(The value is "#{config.remove_ansi_escape_sequences}") end
- Then
-
I successfully run
cucumber
- And
-
the output should contain:
The value is "false"
Last published almost 6 years ago by philoserf.