Last active
February 3, 2017 21:34
-
-
Save shdblowers/1aaad06774626b849859696215c945d2 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: Changing user details | |
Scenario: Changing first name to Bob | |
Given I register a new user | |
And I change their "name" to "Brian" | |
When I change their "name" to "Bob" | |
Then their "name" should be "Bob" | |
Scenario: Changing first name to Charlie | |
Given I register a new user | |
And I change their "name" to "Roberto" | |
When I change their "name" to "Charlie" | |
Then their "name" should be "Charlie" | |
Scenario: Changing email address | |
Given I register a new user | |
And I change their "email" to "[email protected]" | |
When I change their "email" to "[email protected]" | |
Then their "email" should be "[email protected]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment