summaryrefslogtreecommitdiff
path: root/features/admin/groups.feature
blob: 054dccfd64c443c109008e271ee5377b7fa91f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Feature: Admin Groups
  Background:
    Given I sign in as an admin
    And I have group with projects
    And Create gitlab user "John"
    And I visit admin groups page

  Scenario: Create a group
    When I click new group link
    And submit form with new group info
    Then I should be redirected to group page
    And I should see newly created group

  @javascript
  Scenario: Add user into projects in group
    When I visit admin group page
    When I select user "John" from user list as "Reporter"
    Then I should see "John" in team list in every project as "Reporter"