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 announcer activation on command failure
As a developer
I want to configure which announcers should get activated on command failure
In order to understand what caused a command to fail
- 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.activate_announcer_on_command_failure.inspect}") end
- When
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "[]"
- Modify value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| config.activate_announcer_on_command_failure = [:foo, :bar] end Aruba.configure do |config| puts %(The value is "#{config.activate_announcer_on_command_failure.inspect}") end
- Then
-
I successfully run
cucumber
- Then
-
the output should contain:
The value is "[:foo, :bar]"
Last published almost 6 years ago by philoserf.