diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-04-03 12:40:14 +0200 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-04-03 12:40:14 +0200 |
commit | 9b3624071ec8932d468213109486f462a1770a2a (patch) | |
tree | f3ec962712439a753b67bab468936f67f062dc83 /features/project/deploy_keys.feature | |
parent | ed097df62758880eb6412770f661266d4a6e9299 (diff) | |
download | gitlab-ce-9b3624071ec8932d468213109486f462a1770a2a.tar.gz |
Add project deploy keys tests.
Diffstat (limited to 'features/project/deploy_keys.feature')
-rw-r--r-- | features/project/deploy_keys.feature | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/features/project/deploy_keys.feature b/features/project/deploy_keys.feature index 13e3b9bbd2e..a71f6124d9c 100644 --- a/features/project/deploy_keys.feature +++ b/features/project/deploy_keys.feature @@ -6,7 +6,17 @@ Feature: Project Deploy Keys 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 keys + 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 @@ -15,9 +25,16 @@ Feature: Project Deploy Keys Then I should be on deploy keys page And I should see newly created deploy key - Scenario: I attach deploy key to project + 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 |