Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Created April 21, 2009 16:55
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 dchelimsky/99244 to your computer and use it in GitHub Desktop.
Save dchelimsky/99244 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 be presented with the appropriate options
Scenarios:
| Religion | Pork | Lamb | Veal |
| Christian | Y | Y | Y |
| Jewish | | Y | Y |
| Muslim | | Y | Y |
| Hindu | | Y | |
Then /he should be presented with the appropriate options/ do |pork, lamb, veal|
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment