summaryrefslogtreecommitdiff
path: root/features/project/commits/branches.feature
blob: 8422c2119d53e5ec67c9ce4a7f5fb79e91411b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@project_commits
Feature: Project Commits Branches
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has protected branches

  Scenario: I can see project all git branches
    Given I visit project branches page
    Then I should see "Shop" all branches list

  Scenario: I can see project protected git branches
    Given I visit project protected branches page
    Then I should see "Shop" protected branches list

  @javascript
  Scenario: I create a branch
    Given I visit project branches page
    And I click new branch link
    And I submit new branch form
    Then I should see new branch created

  @javascript
  Scenario: I create a branch with invalid name
    Given I visit project branches page
    And I click new branch link
    And I submit new branch form with invalid name
    Then I should see new an error that branch is invalid

  @javascript
  Scenario: I create a branch that already exists
    Given I visit project branches page
    And I click new branch link
    And I submit new branch form with branch that already exists
    Then I should see new an error that branch already exists