Skip to content

Instantly share code, notes, and snippets.

@shdblowers
Last active February 3, 2017 21:34
Show Gist options
  • Save shdblowers/1aaad06774626b849859696215c945d2 to your computer and use it in GitHub Desktop.
Save shdblowers/1aaad06774626b849859696215c945d2 to your computer and use it in GitHub Desktop.
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