Skip to content

Instantly share code, notes, and snippets.

@avh4
Forked from dchelimsky/2) Scenario Outline
Created April 21, 2009 18:05
Show Gist options
  • Save avh4/99281 to your computer and use it in GitHub Desktop.
Save avh4/99281 to your computer and use it in GitHub Desktop.
Scenario Outline: Religious menus
Given the customer is "<Religion>"
When he asks for the menu
Then he should see pork selections if <Pork>
And he should see lamb selections if <Lamb>
And he should see veal selections if <Veal>
Scenarios:
| Religion | Pork | Lamb | Veal |
| Christian | Y | Y | Y |
| Jewish | | Y | Y |
| Muslim | | Y | Y |
| Hindu | | Y | |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment