From 4679107fdce6d88733c82329495b667d1a032217 Mon Sep 17 00:00:00 2001 From: Pawel Chojnacki Date: Tue, 6 Jun 2017 13:16:55 +0200 Subject: Handle case where GITLAB_PROMETHEUS_METRICS_ENABLED is non boolean value by defaulting to false --- spec/db/production/settings_spec.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'spec/db') diff --git a/spec/db/production/settings_spec.rb b/spec/db/production/settings_spec.rb index 00c631b866e..a9d015e0666 100644 --- a/spec/db/production/settings_spec.rb +++ b/spec/db/production/settings_spec.rb @@ -42,5 +42,17 @@ describe 'seed production settings', lib: true do expect(settings.prometheus_metrics_enabled).to eq(false) end end + + context 'GITLAB_PROMETHEUS_METRICS_ENABLED is false' do + before do + stub_env('GITLAB_PROMETHEUS_METRICS_ENABLED', '') + end + + it 'prometheus_metrics_enabled is set to false' do + load(settings_file) + + expect(settings.prometheus_metrics_enabled).to eq(false) + end + end end end -- cgit v1.2.3