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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-11 16:39:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-11 16:39:14 +0300
commit5dc5e2c78f8ee966db96ffe31887a90bce650437 (patch)
tree9ea0e54e9038c5e7a4c73d65f2ba55c6b44a6983 /spec/config
parent37334dd61d5d9d857cea6e58590272e0fbb71a97 (diff)
Add latest changes from gitlab-org/gitlab@15-5-stable-ee
Diffstat (limited to 'spec/config')
-rw-r--r--spec/config/settings_spec.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/spec/config/settings_spec.rb b/spec/config/settings_spec.rb
index 9b721d8cfca..fe2081fa5de 100644
--- a/spec/config/settings_spec.rb
+++ b/spec/config/settings_spec.rb
@@ -151,20 +151,6 @@ RSpec.describe Settings do
end
end
- describe '.build_sidekiq_routing_rules' do
- [
- [nil, [['*', 'default']]],
- [[], [['*', 'default']]],
- [[['name=foobar', 'foobar']], [['name=foobar', 'foobar']]]
- ].each do |input_rules, output_rules|
- context "Given input routing_rules #{input_rules}" do
- it "returns output routing_rules #{output_rules}" do
- expect(described_class.send(:build_sidekiq_routing_rules, input_rules)).to eq(output_rules)
- end
- end
- end
- end
-
describe '.microsoft_graph_mailer' do
it 'defaults' do
expect(described_class.microsoft_graph_mailer.enabled).to be false