summaryrefslogtreecommitdiff
path: root/features/admin
diff options
context:
space:
mode:
authorSemyon Pupkov <mail@semyonpupkov.com>2016-12-17 19:22:16 +0500
committerSemyon Pupkov <mail@semyonpupkov.com>2016-12-19 13:47:55 +0500
commit561ed7b9f91a1d1d08c4a1c1f15bdbcf44f973f1 (patch)
tree627ad46e6801d6beeb015300a9ce5ea91f0b16c0 /features/admin
parente47989a58b8a9f83855ea9210ba5786fc14fb841 (diff)
downloadgitlab-ce-561ed7b9f91a1d1d08c4a1c1f15bdbcf44f973f1.tar.gz
Move admin labels spinach test to rspec
https://gitlab.com/gitlab-org/gitlab-ce/issues/23036
Diffstat (limited to 'features/admin')
-rw-r--r--features/admin/labels.feature38
1 files changed, 0 insertions, 38 deletions
diff --git a/features/admin/labels.feature b/features/admin/labels.feature
deleted file mode 100644
index 1af0e700bd4..00000000000
--- a/features/admin/labels.feature
+++ /dev/null
@@ -1,38 +0,0 @@
-Feature: Admin Issues Labels
- Background:
- Given I sign in as an admin
- And I have labels: "bug", "feature", "enhancement"
- Given I visit admin labels page
-
- Scenario: I should see labels list
- Then I should see label 'bug'
- And I should see label 'feature'
-
- Scenario: I create new label
- Given I submit new label 'support'
- Then I should see label 'support'
-
- Scenario: I edit label
- Given I visit 'bug' label edit page
- When I change label 'bug' to 'fix'
- Then I should not see label 'bug'
- Then I should see label 'fix'
-
- Scenario: I remove label
- When I remove label 'bug'
- Then I should not see label 'bug'
-
- @javascript
- Scenario: I delete all labels
- When I delete all labels
- Then I should see labels help message
-
- Scenario: I create a label with invalid color
- Given I visit admin new label page
- When I submit new label with invalid color
- Then I should see label color error message
-
- Scenario: I create a label that already exists
- Given I visit admin new label page
- When I submit new label 'bug'
- Then I should see label exist error message