Commit adbd6629 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'improve-update-service-specs' into 'master'

Improve ApplicationSettings::UpdateService spec

See merge request gitlab-org/gitlab!26672
parents 05d1d90d 3b6bca2e
...@@ -38,10 +38,10 @@ describe ApplicationSettings::UpdateService do ...@@ -38,10 +38,10 @@ describe ApplicationSettings::UpdateService do
using RSpec::Parameterized::TableSyntax using RSpec::Parameterized::TableSyntax
where(:index_exists, :indexing_enabled, :input_value, :result) do where(:index_exists, :indexing_enabled, :input_value, :result) do
false | false | '1' | false false | false | true | false
false | true | '1' | true false | true | true | true
true | false | '1' | true true | false | true | true
true | true | '1' | true true | true | true | true
end end
with_them do with_them do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment