diff options
author | Nick Thomas <nick@gitlab.com> | 2018-09-12 11:29:50 +0100 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2018-09-13 13:44:04 +0100 |
commit | b4dc492123a88860a944d50bbe30ac9966b5e4b6 (patch) | |
tree | fd52cfebd17c3f4d5e148827bb2e89c287825fba /spec/config | |
parent | f87809f78de9da04f38134ba5ce0cf9ddebf2f63 (diff) | |
download | gitlab-ce-b4dc492123a88860a944d50bbe30ac9966b5e4b6.tar.gz |
Enable omniauth by default
Diffstat (limited to 'spec/config')
-rw-r--r-- | spec/config/settings_spec.rb | 9 |
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 |