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

edit_issuetracker.feature « project « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc0de07ca69449be9e1a8550590abf747d02c013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Feature: Project Issue Tracker
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has issues enabled
    And I visit project "Shop" page

  Scenario: I set the issue tracker to "GitLab"
    When I visit edit project "Shop" page
    And change the issue tracker to "GitLab"
    And I save project
    Then I the project should have "GitLab" as issue tracker

  Scenario: I set the issue tracker to "Redmine"
    When I visit edit project "Shop" page
    And change the issue tracker to "Redmine"
    And I save project
    Then I the project should have "Redmine" as issue tracker