diff options
author | Stan Hu <stanhu@gmail.com> | 2015-08-20 21:33:00 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-08-21 13:47:56 -0700 |
commit | 3715a0f29b6758b3075abb6f28ee24c4eb8ed427 (patch) | |
tree | 96675d33d770fd308c535a11bde4dad40cefadb0 /features/admin | |
parent | 55fc58bda4a5592f2f8deaecec9526fbe4eecd6f (diff) | |
download | gitlab-ce-3715a0f29b6758b3075abb6f28ee24c4eb8ed427.tar.gz |
Fix bug preventing invite by e-mail
This was broken in 70f5291808 as a result of introducing the ability to filter by current user.
Closes #2320
Diffstat (limited to 'features/admin')
-rw-r--r-- | features/admin/groups.feature | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/features/admin/groups.feature b/features/admin/groups.feature index aa365a6ea1a..973918086a3 100644 --- a/features/admin/groups.feature +++ b/features/admin/groups.feature @@ -27,3 +27,9 @@ Feature: Admin Groups When I visit admin group page And I remove user "John Doe" from group Then I should not see "John Doe" in team list + + @javascript + Scenario: Invite user to a group by e-mail + When I visit admin group page + When I select user "johndoe@gitlab.com" from user list as "Reporter" + Then I should see "johndoe@gitlab.com" in team list in every project as "Reporter" |