gitlab 4.3.0 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +6 -0
  3. data/.travis.yml +1 -1
  4. data/Dockerfile +8 -0
  5. data/README.md +64 -0
  6. data/docker-compose.yml +19 -0
  7. data/docker.env +2 -0
  8. data/gitlab.gemspec +4 -4
  9. data/lib/gitlab/client.rb +4 -0
  10. data/lib/gitlab/client/access_requests.rb +94 -0
  11. data/lib/gitlab/client/branches.rb +3 -3
  12. data/lib/gitlab/client/commits.rb +18 -0
  13. data/lib/gitlab/client/events.rb +58 -0
  14. data/lib/gitlab/client/group_milestones.rb +93 -0
  15. data/lib/gitlab/client/groups.rb +11 -11
  16. data/lib/gitlab/client/labels.rb +2 -2
  17. data/lib/gitlab/client/merge_requests.rb +129 -1
  18. data/lib/gitlab/client/notes.rb +21 -4
  19. data/lib/gitlab/client/projects.rb +37 -15
  20. data/lib/gitlab/client/runners.rb +11 -0
  21. data/lib/gitlab/client/sidekiq.rb +37 -0
  22. data/lib/gitlab/client/snippets.rb +3 -1
  23. data/lib/gitlab/client/tags.rb +5 -5
  24. data/lib/gitlab/version.rb +1 -1
  25. data/spec/fixtures/access_request.json +8 -0
  26. data/spec/fixtures/access_requests.json +18 -0
  27. data/spec/fixtures/approved_access_request.json +8 -0
  28. data/spec/fixtures/default_approved_access_request.json +8 -0
  29. data/spec/fixtures/group_milestone.json +1 -0
  30. data/spec/fixtures/group_milestone_issues.json +1 -0
  31. data/spec/fixtures/group_milestone_merge_requests.json +1 -0
  32. data/spec/fixtures/group_milestones.json +1 -0
  33. data/spec/fixtures/merge_request_discussion.json +39 -0
  34. data/spec/fixtures/merge_request_discussion_note.json +33 -0
  35. data/spec/fixtures/merge_request_discussions.json +41 -0
  36. data/spec/fixtures/project_commit_merge_requests.json +1 -0
  37. data/spec/fixtures/project_events.json +81 -1
  38. data/spec/fixtures/project_forks.json +50 -0
  39. data/spec/fixtures/runner_jobs.json +63 -0
  40. data/spec/fixtures/sidekiq_compound_metrics.json +36 -0
  41. data/spec/fixtures/sidekiq_job_stats.json +7 -0
  42. data/spec/fixtures/sidekiq_process_metrics.json +25 -0
  43. data/spec/fixtures/sidekiq_queue_metrics.json +8 -0
  44. data/spec/fixtures/user_contribution_events.json +101 -0
  45. data/spec/fixtures/user_events.json +40 -0
  46. data/spec/fixtures/user_projects.json +153 -0
  47. data/spec/gitlab/client/access_requests_spec.rb +141 -0
  48. data/spec/gitlab/client/branches_spec.rb +4 -2
  49. data/spec/gitlab/client/commits_spec.rb +22 -0
  50. data/spec/gitlab/client/events_spec.rb +48 -0
  51. data/spec/gitlab/client/group_milestones_spec.rb +98 -0
  52. data/spec/gitlab/client/merge_requests_spec.rb +127 -0
  53. data/spec/gitlab/client/notes_spec.rb +4 -4
  54. data/spec/gitlab/client/projects_spec.rb +37 -20
  55. data/spec/gitlab/client/runners_spec.rb +10 -0
  56. data/spec/gitlab/client/sidekiq_spec.rb +64 -0
  57. data/spec/gitlab/client/snippets_spec.rb +2 -2
  58. data/spec/gitlab/client/tags_spec.rb +44 -0
  59. data/spec/gitlab/shell_spec.rb +1 -1
  60. metadata +67 -7
@@ -0,0 +1,64 @@
1
+ require 'spec_helper'
2
+
3
+ describe Gitlab::Client do
4
+ describe ".sidekiq_queue_metrics" do
5
+ before do
6
+ stub_get("/sidekiq/queue_metrics", 'sidekiq_queue_metrics')
7
+ @sidekiq_queue_metrics = Gitlab.sidekiq_queue_metrics
8
+ end
9
+
10
+ it "gets the correct resource" do
11
+ expect(a_get("/sidekiq/queue_metrics")).to have_been_made
12
+ end
13
+
14
+ it "returns a information about a sidekiq default queue" do
15
+ expect(@sidekiq_queue_metrics.queues.default.backlog).to eq 0
16
+ expect(@sidekiq_queue_metrics.queues.default.latency).to eq 0
17
+ end
18
+ end
19
+
20
+ describe ".sidekiq_process_metrics" do
21
+ before do
22
+ stub_get("/sidekiq/process_metrics", 'sidekiq_process_metrics')
23
+ @sidekiq_process_metrics = Gitlab.sidekiq_process_metrics
24
+ end
25
+
26
+ it "gets the correct resource" do
27
+ expect(a_get("/sidekiq/process_metrics")).to have_been_made
28
+ end
29
+
30
+ it "returns a information about a sidekiq process metrics" do
31
+ expect(@sidekiq_process_metrics.processes.first['busy']).to eq 0
32
+ end
33
+ end
34
+
35
+ describe ".sidekiq_job_stats" do
36
+ before do
37
+ stub_get("/sidekiq/job_stats", 'sidekiq_job_stats')
38
+ @sidekiq_job_stats = Gitlab.sidekiq_job_stats
39
+ end
40
+
41
+ it "gets the correct resource" do
42
+ expect(a_get("/sidekiq/job_stats")).to have_been_made
43
+ end
44
+
45
+ it "returns a information about a sidekiq process metrics" do
46
+ expect(@sidekiq_job_stats.jobs.processed).to eq 2
47
+ end
48
+ end
49
+
50
+ describe ".sidekiq_compound_metrics" do
51
+ before do
52
+ stub_get("/sidekiq/compound_metrics", 'sidekiq_compound_metrics')
53
+ @sidekiq_compound_metrics = Gitlab.sidekiq_compound_metrics
54
+ end
55
+
56
+ it "gets the correct resource" do
57
+ expect(a_get("/sidekiq/compound_metrics")).to have_been_made
58
+ end
59
+
60
+ it "returns a information about a sidekiq process metrics" do
61
+ expect(@sidekiq_compound_metrics.jobs.processed).to eq 2
62
+ end
63
+ end
64
+ end
@@ -36,11 +36,11 @@ describe Gitlab::Client do
36
36
  describe ".create_snippet" do
37
37
  before do
38
38
  stub_post("/projects/3/snippets", "snippet")
39
- @snippet = Gitlab.create_snippet(3, title: 'API', file_name: 'api.rb', code: 'code')
39
+ @snippet = Gitlab.create_snippet(3, title: 'API', file_name: 'api.rb', code: 'code', visibility: 'public')
40
40
  end
41
41
 
42
42
  it "gets the correct resource" do
43
- body = { title: 'API', file_name: 'api.rb', code: 'code' }
43
+ body = { title: 'API', file_name: 'api.rb', code: 'code', visibility: 'public' }
44
44
  expect(a_post("/projects/3/snippets").with(body: body)).to have_been_made
45
45
  end
46
46
 
@@ -37,6 +37,17 @@ describe Gitlab::Client do
37
37
  it "returns information about a repository tag" do
38
38
  expect(@tag.name).to eq("0.0.1")
39
39
  end
40
+
41
+ context "tag with special character" do
42
+ before do
43
+ stub_get("/projects/3/repository/tags/test%2Fme", "tag")
44
+ @tag = Gitlab.tag(3, "test/me")
45
+ end
46
+
47
+ it "gets the correct resource" do
48
+ expect(a_get("/projects/3/repository/tags/test%2Fme")).to have_been_made
49
+ end
50
+ end
40
51
  end
41
52
 
42
53
  describe ".create_tag" do
@@ -72,6 +83,17 @@ describe Gitlab::Client do
72
83
  it "returns information about the deleted repository tag" do
73
84
  expect(@tag.tag_name).to eq("0.0.1")
74
85
  end
86
+
87
+ context "tag with special character" do
88
+ before do
89
+ stub_delete("/projects/3/repository/tags/test%2Fme", "tag_delete")
90
+ @tag = Gitlab.delete_tag(3, "test/me")
91
+ end
92
+
93
+ it "gets the correct resource" do
94
+ expect(a_delete("/projects/3/repository/tags/test%2Fme")).to have_been_made
95
+ end
96
+ end
75
97
  end
76
98
 
77
99
  describe ".create_release" do
@@ -88,6 +110,17 @@ describe Gitlab::Client do
88
110
  expect(@tag.tag_name).to eq("0.0.1")
89
111
  expect(@tag.description).to eq("Amazing release. Wow")
90
112
  end
113
+
114
+ context "tag with special character" do
115
+ before do
116
+ stub_post("/projects/3/repository/tags/test%2Fme/release", "release_create")
117
+ @tag = Gitlab.create_release(3, "test/me", "Amazing release. Wow")
118
+ end
119
+
120
+ it "gets the correct resource" do
121
+ expect(a_post("/projects/3/repository/tags/test%2Fme/release")).to have_been_made
122
+ end
123
+ end
91
124
  end
92
125
 
93
126
  describe ".update_release" do
@@ -104,5 +137,16 @@ describe Gitlab::Client do
104
137
  expect(@tag.tag_name).to eq("0.0.1")
105
138
  expect(@tag.description).to eq('Amazing release. Wow')
106
139
  end
140
+
141
+ context "tag with special character" do
142
+ before do
143
+ stub_put("/projects/3/repository/tags/test%2Fme/release", "release_update")
144
+ @tag = Gitlab.update_release(3, "test/me", 'Amazing release. Wow')
145
+ end
146
+
147
+ it "updates the correct resource" do
148
+ expect(a_put("/projects/3/repository/tags/test%2Fme/release")).to have_been_made
149
+ end
150
+ end
107
151
  end
108
152
  end
@@ -55,7 +55,7 @@ describe Gitlab::Shell do
55
55
  it "returns an Array of matching commands" do
56
56
  completed_cmds = @comp.call 'group'
57
57
  expect(completed_cmds).to be_a Array
58
- expect(completed_cmds.sort).to eq(%w(group group_member group_members group_projects group_search group_subgroups group_variable group_variables groups))
58
+ expect(completed_cmds.sort).to eq(%w(group group_access_requests group_member group_members group_milestone group_milestone_issues group_milestone_merge_requests group_milestones group_projects group_search group_subgroups group_variable group_variables groups))
59
59
  end
60
60
  end
61
61
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.0
4
+ version: 4.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nihad Abbasov
8
+ - Sean Edge
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2017-12-29 00:00:00.000000000 Z
12
+ date: 2018-06-03 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: httparty
@@ -16,28 +17,28 @@ dependencies:
16
17
  requirements:
17
18
  - - ">="
18
19
  - !ruby/object:Gem::Version
19
- version: '0'
20
+ version: 0.14.0
20
21
  type: :runtime
21
22
  prerelease: false
22
23
  version_requirements: !ruby/object:Gem::Requirement
23
24
  requirements:
24
25
  - - ">="
25
26
  - !ruby/object:Gem::Version
26
- version: '0'
27
+ version: 0.14.0
27
28
  - !ruby/object:Gem::Dependency
28
29
  name: terminal-table
29
30
  requirement: !ruby/object:Gem::Requirement
30
31
  requirements:
31
32
  - - ">="
32
33
  - !ruby/object:Gem::Version
33
- version: '0'
34
+ version: 1.5.1
34
35
  type: :runtime
35
36
  prerelease: false
36
37
  version_requirements: !ruby/object:Gem::Requirement
37
38
  requirements:
38
39
  - - ">="
39
40
  - !ruby/object:Gem::Version
40
- version: '0'
41
+ version: 1.5.1
41
42
  - !ruby/object:Gem::Dependency
42
43
  name: pry
43
44
  requirement: !ruby/object:Gem::Requirement
@@ -111,22 +112,27 @@ dependencies:
111
112
  description: Ruby client and CLI for GitLab API
112
113
  email:
113
114
  - mail@narkoz.me
115
+ - asedge@gmail.com
114
116
  executables:
115
117
  - gitlab
116
118
  extensions: []
117
119
  extra_rdoc_files: []
118
120
  files:
121
+ - ".dockerignore"
119
122
  - ".gitignore"
120
123
  - ".rubocop.yml"
121
124
  - ".travis.yml"
122
125
  - CHANGELOG.md
123
126
  - CONTRIBUTING.md
127
+ - Dockerfile
124
128
  - Gemfile
125
129
  - LICENSE.txt
126
130
  - README.md
127
131
  - Rakefile
128
132
  - bin/console
129
133
  - bin/setup
134
+ - docker-compose.yml
135
+ - docker.env
130
136
  - exe/gitlab
131
137
  - gitlab.gemspec
132
138
  - lib/gitlab.rb
@@ -134,6 +140,7 @@ files:
134
140
  - lib/gitlab/cli.rb
135
141
  - lib/gitlab/cli_helpers.rb
136
142
  - lib/gitlab/client.rb
143
+ - lib/gitlab/client/access_requests.rb
137
144
  - lib/gitlab/client/award_emojis.rb
138
145
  - lib/gitlab/client/boards.rb
139
146
  - lib/gitlab/client/branches.rb
@@ -142,6 +149,8 @@ files:
142
149
  - lib/gitlab/client/commits.rb
143
150
  - lib/gitlab/client/deployments.rb
144
151
  - lib/gitlab/client/environments.rb
152
+ - lib/gitlab/client/events.rb
153
+ - lib/gitlab/client/group_milestones.rb
145
154
  - lib/gitlab/client/groups.rb
146
155
  - lib/gitlab/client/issues.rb
147
156
  - lib/gitlab/client/jobs.rb
@@ -159,6 +168,7 @@ files:
159
168
  - lib/gitlab/client/repository_files.rb
160
169
  - lib/gitlab/client/runners.rb
161
170
  - lib/gitlab/client/services.rb
171
+ - lib/gitlab/client/sidekiq.rb
162
172
  - lib/gitlab/client/snippets.rb
163
173
  - lib/gitlab/client/system_hooks.rb
164
174
  - lib/gitlab/client/tags.rb
@@ -175,6 +185,9 @@ files:
175
185
  - lib/gitlab/shell.rb
176
186
  - lib/gitlab/shell_history.rb
177
187
  - lib/gitlab/version.rb
188
+ - spec/fixtures/access_request.json
189
+ - spec/fixtures/access_requests.json
190
+ - spec/fixtures/approved_access_request.json
178
191
  - spec/fixtures/board_list.json
179
192
  - spec/fixtures/board_lists.json
180
193
  - spec/fixtures/boards.json
@@ -189,6 +202,7 @@ files:
189
202
  - spec/fixtures/builds.json
190
203
  - spec/fixtures/builds_commits.json
191
204
  - spec/fixtures/compare_merge_request_diff.json
205
+ - spec/fixtures/default_approved_access_request.json
192
206
  - spec/fixtures/deployment.json
193
207
  - spec/fixtures/deployments.json
194
208
  - spec/fixtures/empty.json
@@ -206,6 +220,10 @@ files:
206
220
  - spec/fixtures/group_member_delete.json
207
221
  - spec/fixtures/group_member_edit.json
208
222
  - spec/fixtures/group_members.json
223
+ - spec/fixtures/group_milestone.json
224
+ - spec/fixtures/group_milestone_issues.json
225
+ - spec/fixtures/group_milestone_merge_requests.json
226
+ - spec/fixtures/group_milestones.json
209
227
  - spec/fixtures/group_projects.json
210
228
  - spec/fixtures/group_search.json
211
229
  - spec/fixtures/group_subgroups.json
@@ -230,6 +248,9 @@ files:
230
248
  - spec/fixtures/merge_request_comment.json
231
249
  - spec/fixtures/merge_request_comments.json
232
250
  - spec/fixtures/merge_request_commits.json
251
+ - spec/fixtures/merge_request_discussion.json
252
+ - spec/fixtures/merge_request_discussion_note.json
253
+ - spec/fixtures/merge_request_discussions.json
233
254
  - spec/fixtures/merge_requests.json
234
255
  - spec/fixtures/milestone.json
235
256
  - spec/fixtures/milestone_issues.json
@@ -258,6 +279,7 @@ files:
258
279
  - spec/fixtures/project_commit_comments.json
259
280
  - spec/fixtures/project_commit_create.json
260
281
  - spec/fixtures/project_commit_diff.json
282
+ - spec/fixtures/project_commit_merge_requests.json
261
283
  - spec/fixtures/project_commit_status.json
262
284
  - spec/fixtures/project_commits.json
263
285
  - spec/fixtures/project_edit.json
@@ -266,6 +288,7 @@ files:
266
288
  - spec/fixtures/project_fork.json
267
289
  - spec/fixtures/project_fork_link.json
268
290
  - spec/fixtures/project_forked_for_user.json
291
+ - spec/fixtures/project_forks.json
269
292
  - spec/fixtures/project_hook.json
270
293
  - spec/fixtures/project_hooks.json
271
294
  - spec/fixtures/project_issues.json
@@ -290,11 +313,16 @@ files:
290
313
  - spec/fixtures/runner.json
291
314
  - spec/fixtures/runner_delete.json
292
315
  - spec/fixtures/runner_edit.json
316
+ - spec/fixtures/runner_jobs.json
293
317
  - spec/fixtures/runners.json
294
318
  - spec/fixtures/runners_all.json
295
319
  - spec/fixtures/service.json
296
320
  - spec/fixtures/session.json
297
321
  - spec/fixtures/shell_history.json
322
+ - spec/fixtures/sidekiq_compound_metrics.json
323
+ - spec/fixtures/sidekiq_job_stats.json
324
+ - spec/fixtures/sidekiq_process_metrics.json
325
+ - spec/fixtures/sidekiq_queue_metrics.json
298
326
  - spec/fixtures/snippet.json
299
327
  - spec/fixtures/snippet_award_emoji.json
300
328
  - spec/fixtures/snippet_award_emojis.json
@@ -316,8 +344,11 @@ files:
316
344
  - spec/fixtures/triggers.json
317
345
  - spec/fixtures/user.json
318
346
  - spec/fixtures/user_block_unblock.json
347
+ - spec/fixtures/user_contribution_events.json
319
348
  - spec/fixtures/user_email.json
320
349
  - spec/fixtures/user_emails.json
350
+ - spec/fixtures/user_events.json
351
+ - spec/fixtures/user_projects.json
321
352
  - spec/fixtures/user_search.json
322
353
  - spec/fixtures/users.json
323
354
  - spec/fixtures/variable.json
@@ -325,6 +356,7 @@ files:
325
356
  - spec/gitlab/api_spec.rb
326
357
  - spec/gitlab/cli_helpers_spec.rb
327
358
  - spec/gitlab/cli_spec.rb
359
+ - spec/gitlab/client/access_requests_spec.rb
328
360
  - spec/gitlab/client/award_emojis_spec.rb
329
361
  - spec/gitlab/client/boards_spec.rb
330
362
  - spec/gitlab/client/branches_spec.rb
@@ -334,6 +366,8 @@ files:
334
366
  - spec/gitlab/client/commits_spec.rb
335
367
  - spec/gitlab/client/deployments_spec.rb
336
368
  - spec/gitlab/client/environments_spec.rb
369
+ - spec/gitlab/client/events_spec.rb
370
+ - spec/gitlab/client/group_milestones_spec.rb
337
371
  - spec/gitlab/client/groups_spec.rb
338
372
  - spec/gitlab/client/issues_spec.rb
339
373
  - spec/gitlab/client/jobs_spec.rb
@@ -351,6 +385,7 @@ files:
351
385
  - spec/gitlab/client/repository_files_spec.rb
352
386
  - spec/gitlab/client/runners_spec.rb
353
387
  - spec/gitlab/client/services_spec.rb
388
+ - spec/gitlab/client/sidekiq_spec.rb
354
389
  - spec/gitlab/client/snippets_spec.rb
355
390
  - spec/gitlab/client/system_hooks_spec.rb
356
391
  - spec/gitlab/client/tags_spec.rb
@@ -387,11 +422,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
387
422
  version: '0'
388
423
  requirements: []
389
424
  rubyforge_project:
390
- rubygems_version: 2.7.3
425
+ rubygems_version: 2.7.6
391
426
  signing_key:
392
427
  specification_version: 4
393
428
  summary: A Ruby wrapper and CLI for the GitLab API
394
429
  test_files:
430
+ - spec/fixtures/access_request.json
431
+ - spec/fixtures/access_requests.json
432
+ - spec/fixtures/approved_access_request.json
395
433
  - spec/fixtures/board_list.json
396
434
  - spec/fixtures/board_lists.json
397
435
  - spec/fixtures/boards.json
@@ -406,6 +444,7 @@ test_files:
406
444
  - spec/fixtures/builds.json
407
445
  - spec/fixtures/builds_commits.json
408
446
  - spec/fixtures/compare_merge_request_diff.json
447
+ - spec/fixtures/default_approved_access_request.json
409
448
  - spec/fixtures/deployment.json
410
449
  - spec/fixtures/deployments.json
411
450
  - spec/fixtures/empty.json
@@ -423,6 +462,10 @@ test_files:
423
462
  - spec/fixtures/group_member_delete.json
424
463
  - spec/fixtures/group_member_edit.json
425
464
  - spec/fixtures/group_members.json
465
+ - spec/fixtures/group_milestone.json
466
+ - spec/fixtures/group_milestone_issues.json
467
+ - spec/fixtures/group_milestone_merge_requests.json
468
+ - spec/fixtures/group_milestones.json
426
469
  - spec/fixtures/group_projects.json
427
470
  - spec/fixtures/group_search.json
428
471
  - spec/fixtures/group_subgroups.json
@@ -447,6 +490,9 @@ test_files:
447
490
  - spec/fixtures/merge_request_comment.json
448
491
  - spec/fixtures/merge_request_comments.json
449
492
  - spec/fixtures/merge_request_commits.json
493
+ - spec/fixtures/merge_request_discussion.json
494
+ - spec/fixtures/merge_request_discussion_note.json
495
+ - spec/fixtures/merge_request_discussions.json
450
496
  - spec/fixtures/merge_requests.json
451
497
  - spec/fixtures/milestone.json
452
498
  - spec/fixtures/milestone_issues.json
@@ -475,6 +521,7 @@ test_files:
475
521
  - spec/fixtures/project_commit_comments.json
476
522
  - spec/fixtures/project_commit_create.json
477
523
  - spec/fixtures/project_commit_diff.json
524
+ - spec/fixtures/project_commit_merge_requests.json
478
525
  - spec/fixtures/project_commit_status.json
479
526
  - spec/fixtures/project_commits.json
480
527
  - spec/fixtures/project_edit.json
@@ -483,6 +530,7 @@ test_files:
483
530
  - spec/fixtures/project_fork.json
484
531
  - spec/fixtures/project_fork_link.json
485
532
  - spec/fixtures/project_forked_for_user.json
533
+ - spec/fixtures/project_forks.json
486
534
  - spec/fixtures/project_hook.json
487
535
  - spec/fixtures/project_hooks.json
488
536
  - spec/fixtures/project_issues.json
@@ -507,11 +555,16 @@ test_files:
507
555
  - spec/fixtures/runner.json
508
556
  - spec/fixtures/runner_delete.json
509
557
  - spec/fixtures/runner_edit.json
558
+ - spec/fixtures/runner_jobs.json
510
559
  - spec/fixtures/runners.json
511
560
  - spec/fixtures/runners_all.json
512
561
  - spec/fixtures/service.json
513
562
  - spec/fixtures/session.json
514
563
  - spec/fixtures/shell_history.json
564
+ - spec/fixtures/sidekiq_compound_metrics.json
565
+ - spec/fixtures/sidekiq_job_stats.json
566
+ - spec/fixtures/sidekiq_process_metrics.json
567
+ - spec/fixtures/sidekiq_queue_metrics.json
515
568
  - spec/fixtures/snippet.json
516
569
  - spec/fixtures/snippet_award_emoji.json
517
570
  - spec/fixtures/snippet_award_emojis.json
@@ -533,8 +586,11 @@ test_files:
533
586
  - spec/fixtures/triggers.json
534
587
  - spec/fixtures/user.json
535
588
  - spec/fixtures/user_block_unblock.json
589
+ - spec/fixtures/user_contribution_events.json
536
590
  - spec/fixtures/user_email.json
537
591
  - spec/fixtures/user_emails.json
592
+ - spec/fixtures/user_events.json
593
+ - spec/fixtures/user_projects.json
538
594
  - spec/fixtures/user_search.json
539
595
  - spec/fixtures/users.json
540
596
  - spec/fixtures/variable.json
@@ -542,6 +598,7 @@ test_files:
542
598
  - spec/gitlab/api_spec.rb
543
599
  - spec/gitlab/cli_helpers_spec.rb
544
600
  - spec/gitlab/cli_spec.rb
601
+ - spec/gitlab/client/access_requests_spec.rb
545
602
  - spec/gitlab/client/award_emojis_spec.rb
546
603
  - spec/gitlab/client/boards_spec.rb
547
604
  - spec/gitlab/client/branches_spec.rb
@@ -551,6 +608,8 @@ test_files:
551
608
  - spec/gitlab/client/commits_spec.rb
552
609
  - spec/gitlab/client/deployments_spec.rb
553
610
  - spec/gitlab/client/environments_spec.rb
611
+ - spec/gitlab/client/events_spec.rb
612
+ - spec/gitlab/client/group_milestones_spec.rb
554
613
  - spec/gitlab/client/groups_spec.rb
555
614
  - spec/gitlab/client/issues_spec.rb
556
615
  - spec/gitlab/client/jobs_spec.rb
@@ -568,6 +627,7 @@ test_files:
568
627
  - spec/gitlab/client/repository_files_spec.rb
569
628
  - spec/gitlab/client/runners_spec.rb
570
629
  - spec/gitlab/client/services_spec.rb
630
+ - spec/gitlab/client/sidekiq_spec.rb
571
631
  - spec/gitlab/client/snippets_spec.rb
572
632
  - spec/gitlab/client/system_hooks_spec.rb
573
633
  - spec/gitlab/client/tags_spec.rb