milestones.feature 886 Bytes
Newer Older
1
Feature: Project Milestones
2
  Background:
3
    Given I sign in as a user
4 5
    And I own project "Shop"
    And project "Shop" has milestone "v2.2"
6
    Given I visit project "Shop" milestones page
7 8 9 10 11 12 13 14 15 16 17 18

  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"
19 20 21 22 23 24

  @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
25 26 27 28 29 30

  # Markdown

  Scenario: Headers inside the description should have ids generated for them.
    Given I click link "v2.2"
    Then Header "Description header" should have correct id and link