Welcome to mirror list, hosted at ThFree Co, Russian Federation.

milestones.feature « issues « project « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d78096a4f169627572099a34ef5b13022a84c551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Feature: Milestones
  Background:
    Given I signin 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"