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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'features/project/team_management.feature')
-rw-r--r--features/project/team_management.feature43
1 files changed, 0 insertions, 43 deletions
diff --git a/features/project/team_management.feature b/features/project/team_management.feature
deleted file mode 100644
index 6cda225ea7b..00000000000
--- a/features/project/team_management.feature
+++ /dev/null
@@ -1,43 +0,0 @@
-Feature: Project Team Management
- Background:
- Given I sign in as a user
- And I own project "Shop"
- And gitlab user "Mike"
- And gitlab user "Sam"
- And "Sam" is "Shop" developer
- And I visit project "Shop" team page
-
- Scenario: See all team members
- Then I should be able to see myself in team
- And I should see "Sam" in team list
-
- @javascript
- Scenario: Add user to project
- Given I click link "Add members"
- And I select "Mike" as "Reporter"
- Then I should see "Mike" in team list as "Reporter"
-
- @javascript
- Scenario: Invite user to project
- Given I click link "Add members"
- And I select "sjobs@apple.com" as "Reporter"
- Then I should see "sjobs@apple.com" in team list as invited "Reporter"
-
- @javascript
- Scenario: Update user access
- Given I should see "Sam" in team list as "Developer"
- And I change "Sam" role to "Reporter"
- And I should see "Sam" in team list as "Reporter"
-
- Scenario: Cancel team member
- Given I click cancel link for "Sam"
- Then I visit project "Shop" team page
- And I should not see "Sam" in team list
-
- Scenario: Import team from another project
- Given I own project "Website"
- And "Mike" is "Website" reporter
- When I visit project "Shop" team page
- And I click link "Import team from another project"
- And I submit "Website" project for import team
- Then I should see "Mike" in team list as "Reporter"