bf1554f8c4
Closes #1167
27 lines
759 B
Gherkin
27 lines
759 B
Gherkin
Feature: Project Milestones
|
|
Background:
|
|
Given I sign in as a user
|
|
And I own project "Shop"
|
|
And project "Shop" has milestone "v2.2"
|
|
Given I visit project "Shop" milestones page
|
|
|
|
Scenario: I should see active milestones
|
|
Then I should see milestone "v2.2"
|
|
|
|
Scenario: I should see milestone
|
|
Given I click link "v2.2"
|
|
Then I should see milestone "v2.2"
|
|
|
|
Scenario: I create new milestone
|
|
Given I click link "New Milestone"
|
|
And I submit new milestone "v2.3"
|
|
Then I should see milestone "v2.3"
|
|
|
|
@javascript
|
|
Scenario: Listing closed issues
|
|
Given the milestone has open and closed issues
|
|
And I click link "v2.2"
|
|
Then I should see 3 issues
|
|
When I click link "All Issues"
|
|
Then I should see 4 issues
|