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
path: root/spec
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-01-31 13:57:11 +0300
committerRémy Coutable <remy@rymai.me>2018-01-31 13:57:11 +0300
commitf8250f8fd0cfec10a639b8a010331197a9e1c40e (patch)
tree651216ee5f425ba88cf1ec3faf1643634f9d0105 /spec
parentbebb9c0c6d478e267b5b79bb9c6146ed519f6f20 (diff)
parent30e6cfa05a361cbdc12ddb7c12061f4c7221c61b (diff)
Merge branch 'sh-fix-events-collection' into 'master'
Fix not all events being shown in group dashboard Closes #42560 See merge request gitlab-org/gitlab-ce!16819
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/groups_controller_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/controllers/groups_controller_spec.rb b/spec/controllers/groups_controller_spec.rb
index a9cfd964dd5..492fed42d31 100644
--- a/spec/controllers/groups_controller_spec.rb
+++ b/spec/controllers/groups_controller_spec.rb
@@ -85,6 +85,30 @@ describe GroupsController do
end
end
+ describe 'GET #activity' do
+ render_views
+
+ before do
+ sign_in(user)
+ project
+ end
+
+ context 'as json' do
+ it 'includes all projects in event feed' do
+ 3.times do
+ project = create(:project, group: group)
+ create(:event, project: project)
+ end
+
+ get :activity, id: group.to_param, format: :json
+
+ expect(response).to have_gitlab_http_status(200)
+ expect(json_response['count']).to eq(3)
+ expect(assigns(:projects).limit_value).to be_nil
+ end
+ end
+ end
+
describe 'POST #create' do
context 'when creating subgroups', :nested_groups do
[true, false].each do |can_create_group_status|