Created
January 13, 2009 00:18
-
-
Save dchelimsky/46256 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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