Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/groups/participants_service_spec.rb')
-rw-r--r--spec/services/groups/participants_service_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/services/groups/participants_service_spec.rb b/spec/services/groups/participants_service_spec.rb
index 8359bf1670f..e934921317d 100644
--- a/spec/services/groups/participants_service_spec.rb
+++ b/spec/services/groups/participants_service_spec.rb
@@ -22,6 +22,12 @@ RSpec.describe Groups::ParticipantsService, feature_category: :groups_and_projec
stub_feature_flags(disable_all_mention: false)
end
+ it 'returns results in correct order' do
+ expect(service_result.pluck(:username)).to eq([
+ 'all', developer.username, parent_group.full_path, subgroup.full_path
+ ])
+ end
+
it 'includes `All Group Members`' do
group.add_developer(create(:user))