Skip to content

Instantly share code, notes, and snippets.

@shdblowers
Last active February 3, 2017 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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 "splurgghhh@garrbled.com"
When I change their "email" to "emma@testing.ie"
Then their "email" should be "emma@testing.ie"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment