Created
June 17, 2018 11:15
-
-
Save paulbjensen/f33ef291e3eb5bf1b3137c55828a32ed to your computer and use it in GitHub Desktop.
A Cucumber feature file for a Medium article
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: Delete my data | |
In order to no longer have any of my data stored on the application | |
As a registered user | |
I want to be able to delete my data from the application | |
Scenario: Successfully delete my data | |
Given I am a registered user | |
When I login to the application | |
And I visit my settings | |
When I click on "Delete my data" | |
And I fill in "confirmation" with "[email protected]" | |
And I press "Delete my data" | |
Then I should be logged out of the application | |
And I should see "Your data has been deleted from the application" | |
And there shouldn't be any data for the user "[email protected]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment