BigW Consortium Gitlab

milestone.feature 882 Bytes
Newer Older
Rubén Dávila committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Feature: Project Milestone
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has labels: "bug", "feature", "enhancement"
    And project "Shop" has milestone "v2.2"
    And milestone has issue "Bugfix1" with labels: "bug", "feature"
    And milestone has issue "Bugfix2" with labels: "bug", "enhancement"


  @javascript
  Scenario: Listing issues from issues tab
    Given I visit project "Shop" milestones page
    And I click link "v2.2"
    Then I should see the labels "bug", "enhancement" and "feature"
16
    And I should see the "bug" label listed only once
Rubén Dávila committed
17 18 19 20 21 22 23 24

  @javascript
  Scenario: Listing labels from labels tab
    Given I visit project "Shop" milestones page
    And I click link "v2.2"
    And I click link "Labels"
    Then I should see the list of labels
    And I should see the labels "bug", "enhancement" and "feature"