gitlab-org--gitlab-foss/features/admin/groups.feature

23 lines
655 B
Gherkin
Raw Normal View History

@admin
2012-10-22 18:42:06 +00:00
Feature: Admin Groups
Background:
Given I sign in as an admin
2012-12-25 22:52:20 +00:00
And I have group with projects
2014-02-07 16:59:55 +00:00
And User "John Doe" exists
2012-10-22 18:42:06 +00:00
And I visit admin groups page
2013-06-26 12:09:17 +00:00
Scenario: See group list
Then I should be all groups
2012-10-22 18:42:06 +00:00
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
2012-12-25 22:52:20 +00:00
@javascript
2012-12-25 22:52:20 +00:00
Scenario: Add user into projects in group
When I visit admin group page
When I select user "John Doe" from user list as "Reporter"
Then I should see "John Doe" in team list in every project as "Reporter"