Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2024-11-04 12:16:26 +00:00
parent 492ef8d5bb
commit 62d12a8a8d
87 changed files with 1788 additions and 1412 deletions

View File

@ -46,8 +46,8 @@ specific to the worker in the shared examples block.
```ruby
it_behaves_like 'an idempotent worker' do
it 'checks the side-effects for multiple calls' do
# `subject` will call the job's perform method 2 times
subject
# `perform_idempotent_work` will call the job's perform method 2 times
perform_idempotent_work
expect(model.state).to eq('state')
end