You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- Feature: html formatter
-
- Background:
- Given the standard step definitions
- And a file named "features/my_feature.feature" with:
- """
- Feature: Some feature
-
- Scenario Outline: a scenario
- Given a <status> step
-
- Examples:
- | status |
- | passed |
- | failed |
- """
-
- Scenario: output html to stdout
- When I run `cucumber features/my_feature.feature --format html`
- Then it should pass
- And output should be html with title "Cucumber"
|