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

deploy_keys.feature « project « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13e3b9bbd2ea0a8ed4bf31c53f0524806df80516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 keys

  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 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