Skip to content

Instantly share code, notes, and snippets.

@bmabey
Forked from aslakhellesoy/1) Religious Menu
Created April 21, 2009 17:18
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 bmabey/99255 to your computer and use it in GitHub Desktop.
Save bmabey/99255 to your computer and use it in GitHub Desktop.
| Religion | Pork | Lamb | Veal |
| Christian | Y | Y | Y |
| Jewish | | Y | Y |
| Muslim | | Y | Y |
| Hindu | Y | Y | |
| Atheist | Y | Y | Y |
Scenario Outline: Religious menus
Given I am "<Religion>"
And I am in a restaurant that serves Pork, Lamb, and Veal
When I ask to see a menu
I should be presented a menu with <Meat Options>
Examples:
| Religion | Meat Options |
| Christian | Pork, Lamb, Veal |
| Jewish | Lamb, Veal |
| Muslim | Lamb, Veal |
| Hindu | Lamb |
Scenario Outline: Religious menus
Given I am "<Religion>"
And I am in a restaurant that serves Pork, Lamb, and Veal
When I ask to see a menu
I should be presented a menu with <Meat Options>
Examples:
| Religion | Meat Options |
| * | Pork | Lamb | Veal |
| Christian | Y | Y | Y |
| Jewish | N | Y | Y |
| Muslim | N | Y | Y |
| Hindu | N | Y | N |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment