summaryrefslogtreecommitdiff
path: root/features/profile
diff options
context:
space:
mode:
authorVitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com>2017-09-10 20:33:28 +1100
committerVitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com>2017-09-10 20:33:28 +1100
commit3525d5df65d2b1215bb08d5efa4aec86c4a26dc1 (patch)
treee1b2a08ca1e7020398fe8bbdd0a11ece5bc15b57 /features/profile
parent5d952f756bcf0355fc5d86d819dfc6913c0ae351 (diff)
downloadgitlab-ce-3525d5df65d2b1215bb08d5efa4aec86c4a26dc1.tar.gz
Replace the profile/emails.feature spinach test with an rspec analog
Diffstat (limited to 'features/profile')
-rw-r--r--features/profile/emails.feature26
1 files changed, 0 insertions, 26 deletions
diff --git a/features/profile/emails.feature b/features/profile/emails.feature
deleted file mode 100644
index 19ed949f6ae..00000000000
--- a/features/profile/emails.feature
+++ /dev/null
@@ -1,26 +0,0 @@
-@profile
-Feature: Profile Emails
- Background:
- Given I sign in as a user
- And I visit profile emails page
-
- Scenario: I should see emails
- Then I should see my emails
-
- Scenario: Add new email
- Given I submit new email "my@email.com"
- Then I should see new email "my@email.com"
- And I should see my emails
-
- Scenario: Add duplicate email
- Given I submit duplicate email @user.email
- Then I should not have @user.email added
- And I should see my emails
-
- Scenario: Remove email
- Given I submit new email "my@email.com"
- Then I should see new email "my@email.com"
- And I should see my emails
- Then I click link "Remove" for "my@email.com"
- Then I should not see email "my@email.com"
- And I should see my emails