Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'features/project/deploy_keys.feature')
-rw-r--r--features/project/deploy_keys.feature40
1 files changed, 0 insertions, 40 deletions
diff --git a/features/project/deploy_keys.feature b/features/project/deploy_keys.feature
deleted file mode 100644
index a71f6124d9c..00000000000
--- a/features/project/deploy_keys.feature
+++ /dev/null
@@ -1,40 +0,0 @@
-Feature: Project Deploy Keys
- Background:
- Given I sign in as a user
- And I own project "Shop"
-
- Scenario: I should see deploy keys list
- Given project has deploy key
- When I visit project deploy keys page
- Then I should see project deploy key
-
- Scenario: I should see project deploy keys
- Given other project has deploy key
- When I visit project deploy keys page
- Then I should see other project deploy key
-
- Scenario: I should see public deploy keys
- Given public deploy key exists
- When I visit project deploy keys page
- Then I should see public deploy key
-
- Scenario: I add new deploy key
- Given I visit project deploy keys page
- When I click 'New Deploy Key'
- And I submit new deploy key
- Then I should be on deploy keys page
- And I should see newly created deploy key
-
- Scenario: I attach other project deploy key to project
- Given other project has deploy key
- And I visit project deploy keys page
- When I click attach deploy key
- Then I should be on deploy keys page
- And I should see newly created deploy key
-
- Scenario: I attach public deploy key to project
- Given public deploy key exists
- And I visit project deploy keys page
- When I click attach deploy key
- Then I should be on deploy keys page
- And I should see newly created deploy key