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 collaboratorWorking Directory
As a developer
I want to configure the working directory of aruba
In order to have a test directory for each used spec runner - e.g. cucumber or rspec
- 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.working_directory}") end
- When
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "tmp/aruba"
- Modify value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| config.working_directory = 'tmp/cucumber' end
- And
- the default feature-test
- And
- the default executable
- When
-
I successfully run
cucumber
- Then
- a directory named "tmp/cucumber" should exist
Last published almost 7 years ago by Max Meyer.