2012-09-10 07:27:11 -04:00
|
|
|
Feature: Project Browse branches
|
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
2012-06-15 00:15:28 -04:00
|
|
|
And I own project "Shop"
|
2012-08-03 12:59:55 -04:00
|
|
|
And project "Shop" has protected branches
|
|
|
|
|
|
|
|
Scenario: I can see project all git branches
|
2014-05-24 07:20:12 -04:00
|
|
|
Given I visit project branches page
|
2012-08-03 12:59:55 -04:00
|
|
|
Then I should see "Shop" all branches list
|
|
|
|
|
|
|
|
Scenario: I can see project protected git branches
|
2014-05-24 07:20:12 -04:00
|
|
|
Given I visit project protected branches page
|
2012-08-03 12:59:55 -04:00
|
|
|
Then I should see "Shop" protected branches list
|
2012-06-15 00:15:28 -04:00
|
|
|
|
2014-02-24 07:55:27 -05:00
|
|
|
Scenario: I create a branch
|
2014-05-24 07:20:12 -04:00
|
|
|
Given I visit project branches page
|
|
|
|
And I click new branch link
|
2014-02-24 07:55:27 -05:00
|
|
|
When I submit new branch form
|
|
|
|
Then I should see new branch created
|