Last active
August 29, 2015 14:14
-
-
Save TheMightyLlama/5e0cbe4257d6090dc583 to your computer and use it in GitHub Desktop.
Login Sample
This file contains 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 | |
Login can be performed with validated email | |
User stays on login page with wrong username/pass | |
Scenario: Correct Email Pass Combo | |
Given User Exists | |
And User has <email> | |
And User has <password> | |
When User attempts to login | |
Then they are given access to the service | |
Examples: | |
| email | password | | |
| [email protected] | goodpass | | |
Scenario: Incorrect Username Pass Combo | |
Given User Exists | |
And User has <email> | |
And User has <password> | |
When User attempts to login | |
Then they are informed that they have a bad username or password | |
Examples: | |
| email | password | | |
| badmail.com | goodpass | | |
| badmail@com | goodpass | | |
| !@£$% | goodpass | | |
| [email protected] | badpass | | |
| [email protected] | !@£$%%^ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment