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

deploy_keys.feature « admin « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95ac77cddd232540d8f6c9988547f882d501838e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@admin
Feature: Admin Deploy Keys
  Background:
    Given I sign in as an admin
    And there are public deploy keys in system

  Scenario: Deploy Keys list
    When I visit admin deploy keys page
    Then I should see all public deploy keys

  Scenario: Deploy Keys new
    When I visit admin deploy keys page
    And I click 'New Deploy Key'
    And I submit new deploy key
    Then I should be on admin deploy keys page
    And I should see newly created deploy key without write access

  Scenario: Deploy Keys new with write access
    When I visit admin deploy keys page
    And I click 'New Deploy Key'
    And I submit new deploy key with write access
    Then I should be on admin deploy keys page
    And I should see newly created deploy key with write access