gitlabhq/features/admin/groups.feature

18 lines
569 B
Gherkin
Raw Normal View History

2012-10-22 20:42:06 +02:00
Feature: Admin Groups
Background:
Given I sign in as an admin
2012-12-25 23:52:20 +01:00
And I have group with projects
And Create gitlab user "John"
2012-10-22 20:42:06 +02:00
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
2012-12-25 23:52:20 +01:00
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"