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: Scenario outlines --expand option
-
- In order to make it easier to write certain editor plugins and also
- for some people to understand scenarios, Cucumber will expand examples
- in outlines if you add the `--expand` option when running them.
-
- Scenario:
- Given a file named "features/test.feature" with:
- """
- Feature:
- Scenario Outline:
- Given the secret code is <code>
- When I guess <guess>
- Then I am <verdict>
-
- Examples:
- | code | guess | verdict |
- | blue | blue | right |
- | red | blue | wrong |
- """
- When I run `cucumber -i -q --expand`
- Then the stderr should not contain anything
- And it should pass with:
- """
- Feature:
-
- Scenario Outline:
- Given the secret code is <code>
- When I guess <guess>
- Then I am <verdict>
-
- Examples:
-
- Example: | blue | blue | right |
- Given the secret code is blue
- When I guess blue
- Then I am right
-
- Example: | red | blue | wrong |
- Given the secret code is red
- When I guess blue
- Then I am wrong
-
- 2 scenarios (2 undefined)
- 6 steps (6 undefined)
- """
|