Skip to content

Instantly share code, notes, and snippets.

@okaminu
Last active March 19, 2021 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save okaminu/100827a8218a3b124d4a56d1c9ec2e4a to your computer and use it in GitHub Desktop.
Save okaminu/100827a8218a3b124d4a56d1c9ec2e4a to your computer and use it in GitHub Desktop.
Feature: Chicken Finds Insects
Scenario Outline:
Given there is a <type> chicken
When chicken has searched insects for <minutes> minutes
Then the chicken has found <insectCount> insects
Examples:
| type | minutes | insectCount |
| regular | 1 | 3 |
| regular | 10 | 30 |
| robot | 1 | 10 |
| robot | 0.5 | 5 |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment