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 collaboratorOverview of steps
Given you're a system administrator
Who would like to use aruba
But didn't know which steps are available
- Background
-
- Given
- I use a fixture named "cli-app"
- Scenarios
-
- Use information found in repository
-
- Given
-
an executable named "bin/aruba-test-cli" with:
#!/bin/bash git clone https://github.com/cucumber/aruba.git cd aruba grep -E "When|Given|Then" lib/aruba/cucumber/*.rb | awk -F ":" '{ $1 = ""; print $0}' |sort
- And
-
a file named "features/run.feature" with:
Feature: Run it Scenario: Run command When I run
cli
Then the output should contain: """ Cloning into 'aruba'... """ And the output should contain: """ Given(/^ """ And the output should contain: """ When(/^ """ And the output should contain: """ Then(/^ """ - And
- the default aruba exit timeout is 60 seconds
- When
-
I run
cucumber
- Then
- the features should all pass
- Use cucumber output formatter
-
- Given
-
a file named "features/run.feature" with:
Feature: Run it Scenario: Run command Given a directory named "features" And a file named "features/support/env.rb" with: """ require 'aruba/cucumber' """ When I run
cucumber --format stepdefs
Then the output should contain: """ NOT MATCHED BY ANY STEPS """ - When
-
I run
cucumber
- Then
- the features should all pass
Last published almost 6 years ago by philoserf.