Created
July 19, 2011 12:52
-
-
Save darrencauthon/1092197 to your computer and use it in GitHub Desktop.
Simple.Data in SpecFlow example, Gherkin
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
Scenario: Submit a valid create account form | |
Given the following accounts exist | |
| FirstName | LastName | Email | | |
| Howard | Roark | [email protected] | | |
When I submit the following Create Account form | |
| Field | Value | | |
| FirstName | John | | |
| LastName | Galt | | |
| Email | [email protected] | | |
Then the following accounts should exist | |
| FirstName | LastName | Email | | |
| Howard | Roark | [email protected] | | |
| John | Galt | [email protected] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment