mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
- do not add Feature to feature titles - titleize feature titles - put steps on the same path as .feature files - make feature titles match their path
16 lines
481 B
Gherkin
16 lines
481 B
Gherkin
Feature: Project Commits User Lookup
|
|
Background:
|
|
Given I sign in as a user
|
|
And I own a project
|
|
And I visit my project's commits page
|
|
|
|
Scenario: I browse commit from list
|
|
Given I have user with primary email
|
|
When I click on commit link
|
|
Then I see author based on primary email
|
|
|
|
Scenario: I browse another commit from list
|
|
Given I have user with secondary email
|
|
When I click on another commit link
|
|
Then I see author based on secondary email
|