30 lines
851 B
Gherkin
30 lines
851 B
Gherkin
Feature: Project Browse commits
|
|
Background:
|
|
Given I sign in as a user
|
|
And I own a project
|
|
And I visit my project's commits page
|
|
|
|
Scenario: I browse commits list for master branch
|
|
Then I see project commits
|
|
|
|
Scenario: I browse atom feed of commits list for master branch
|
|
Given I click atom feed link
|
|
Then I see commits atom feed
|
|
|
|
Scenario: I browse commit from list
|
|
Given I click on commit link
|
|
Then I see commit info
|
|
|
|
Scenario: I compare refs
|
|
Given I visit compare refs page
|
|
And I fill compare fields with refs
|
|
Then I see compared refs
|
|
|
|
Scenario: I browse commits for a specific path
|
|
Given I visit my project's commits page for a specific path
|
|
Then I see breadcrumb links
|
|
|
|
Scenario: I browse commits stats
|
|
Given I visit my project's commits stats page
|
|
Then I see commits stats
|