summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2018-09-13 14:40:08 +0000
committerDouwe Maan <douwe@gitlab.com>2018-09-13 14:40:08 +0000
commitff5d8b635f234241441009e41af7b61f5804b2c2 (patch)
tree0b79c2a20d2b7e685c58e5accd8734f3e92aa5c4 /spec
parentc4009e643d3f7297d4eb53477ee7b71e25ac01bd (diff)
parentb4dc492123a88860a944d50bbe30ac9966b5e4b6 (diff)
downloadgitlab-ce-ff5d8b635f234241441009e41af7b61f5804b2c2.tar.gz
Merge branch '49990-enable-omniauth-by-default' into 'master'
Enable omniauth by default Closes #49990 See merge request gitlab-org/gitlab-ce!21700
Diffstat (limited to 'spec')
-rw-r--r--spec/config/settings_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/config/settings_spec.rb b/spec/config/settings_spec.rb
new file mode 100644
index 00000000000..83b2de47741
--- /dev/null
+++ b/spec/config/settings_spec.rb
@@ -0,0 +1,9 @@
+require 'spec_helper'
+
+describe Settings do
+ describe 'omniauth' do
+ it 'defaults to enabled' do
+ expect(described_class.omniauth.enabled).to be true
+ end
+ end
+end