diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-05-16 13:28:35 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-05-16 13:28:35 +0300 |
commit | 85cecc0b2ef25ef4e4dc56583b0e202400168abb (patch) | |
tree | bc4839c2a61e0bd888a7f6cccdfd3002515eb501 /features/group.feature | |
parent | cb58e1cbd74a76c2e25f56e8df1f1f494d14128a (diff) | |
download | gitlab-ce-85cecc0b2ef25ef4e4dc56583b0e202400168abb.tar.gz |
Fix 500 error on group members search
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'features/group.feature')
-rw-r--r-- | features/group.feature | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/features/group.feature b/features/group.feature index 4e11bcba939..71c28c07a3c 100644 --- a/features/group.feature +++ b/features/group.feature @@ -113,3 +113,10 @@ Feature: Groups Then I should see user "John Doe" in team list Then I should see user "Mary Jane" in team list Then I should not see the "Remove User From Group" button for "Mary Jane" + + Scenario: Search member by name + Given "Mary Jane" is guest of group "Guest" + And I visit group "Guest" members page + When I search for 'Mary' member + Then I should see user "Mary Jane" in team list + Then I should not see user "John Doe" in team list |