Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Created January 13, 2009 00:18
Show Gist options
  • Save dchelimsky/46256 to your computer and use it in GitHub Desktop.
Save dchelimsky/46256 to your computer and use it in GitHub Desktop.
Feature: login widget
Anonymous visitors see a login widget on every page
Logged in users see a welcome widget on every page
Scenario Outline:
Given I am <logged in or anonymous>
When I visit the <page>
Then I should see <widget>
Examples:
| logged in or anonymous | page | widget |
| logged in | home page | welcome |
| logged in | about us page | welcome |
| anonymous | home page | login |
| anonymous | about us page | login |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment