2015-11-25 05:44:39 -05:00
|
|
|
Feature: Group Milestones
|
|
|
|
Background:
|
|
|
|
Given I sign in as "John Doe"
|
|
|
|
And "John Doe" is owner of group "Owned"
|
|
|
|
|
|
|
|
Scenario: I should see group "Owned" milestone index page with no milestones
|
|
|
|
When I visit group "Owned" page
|
|
|
|
And I click on group milestones
|
|
|
|
Then I should see group milestones index page has no milestones
|
|
|
|
|
|
|
|
Scenario: I should see group "Owned" milestone index page with milestones
|
|
|
|
Given Group has projects with milestones
|
|
|
|
When I visit group "Owned" page
|
|
|
|
And I click on group milestones
|
|
|
|
Then I should see group milestones index page with milestones
|
|
|
|
|
|
|
|
Scenario: I should see group "Owned" milestone show page
|
|
|
|
Given Group has projects with milestones
|
|
|
|
When I visit group "Owned" page
|
|
|
|
And I click on group milestones
|
|
|
|
And I click on one group milestone
|
|
|
|
Then I should see group milestone with descriptions and expiry date
|
|
|
|
And I should see group milestone with all issues and MRs assigned to that milestone
|
|
|
|
|
2017-07-07 11:08:49 -04:00
|
|
|
Scenario: Create group milestones
|
2015-11-25 05:44:39 -05:00
|
|
|
Given I visit group "Owned" milestones page
|
|
|
|
And I click new milestone button
|
|
|
|
And I fill milestone name
|
|
|
|
When I press create mileston button
|
2017-07-07 11:08:49 -04:00
|
|
|
Then group milestone should be created
|
2016-02-24 15:37:40 -05:00
|
|
|
|
|
|
|
Scenario: I should see Issues listed with labels
|
|
|
|
Given Group has projects with milestones
|
|
|
|
When I visit group "Owned" page
|
|
|
|
And I click on group milestones
|
|
|
|
And I click on one group milestone
|
|
|
|
Then I should see the "bug" label
|
|
|
|
And I should see the "feature" label
|
|
|
|
And I should see the project name in the Issue row
|
|
|
|
|
2017-04-26 03:37:50 -04:00
|
|
|
@javascript
|
2016-02-24 15:37:40 -05:00
|
|
|
Scenario: I should see the Labels tab
|
|
|
|
Given Group has projects with milestones
|
|
|
|
When I visit group "Owned" page
|
|
|
|
And I click on group milestones
|
|
|
|
And I click on one group milestone
|
|
|
|
And I click on the "Labels" tab
|
|
|
|
Then I should see the list of labels
|