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

branches.feature « commits « project « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcf8b7694f453340f4e1e07c3649a45d35fb5a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Feature: Project Browse branches
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has protected branches
    Given I visit project branches page

  Scenario: I can see project recent git branches
    Then I should see "Shop" recent branches list

  Scenario: I can see project all git branches
    Given I click link "All"
    Then I should see "Shop" all branches list

  Scenario: I can see project protected git branches
    Given I click link "Protected"
    Then I should see "Shop" protected branches list

  Scenario: I create a branch
    Given I click new branch link
    When I submit new branch form
    Then I should see new branch created