summaryrefslogtreecommitdiff
path: root/spec/models/application_setting_spec.rb
diff options
context:
space:
mode:
authorAndrei Gliga <otzy_007@yahoo.com>2016-05-04 15:57:00 +0300
committerAndrei Gliga <otzy_007@yahoo.com>2016-05-12 13:44:46 +0300
commit47ee5125e881694b7713f187b48589a2f4bbd747 (patch)
tree98cc17644946c4060244a0085d095daf1182a036 /spec/models/application_setting_spec.rb
parent7c7c5b7e40ff4fed64a9f62beed027064c292eaf (diff)
downloadgitlab-ce-47ee5125e881694b7713f187b48589a2f4bbd747.tar.gz
validate disabled_oauth_sign_in_sources in ApplicationSe
Diffstat (limited to 'spec/models/application_setting_spec.rb')
-rw-r--r--spec/models/application_setting_spec.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/models/application_setting_spec.rb b/spec/models/application_setting_spec.rb
index 1ce22feed5c..fb3ea491df7 100644
--- a/spec/models/application_setting_spec.rb
+++ b/spec/models/application_setting_spec.rb
@@ -20,6 +20,9 @@ describe ApplicationSetting, models: true do
it { is_expected.to allow_value(https).for(:after_sign_out_path) }
it { is_expected.not_to allow_value(ftp).for(:after_sign_out_path) }
+ it { is_expected.to allow_value([:github]).for(:disabled_oauth_sign_in_sources) }
+ it { is_expected.not_to allow_value([:test]).for(:disabled_oauth_sign_in_sources) }
+
it { is_expected.to validate_presence_of(:max_attachment_size) }
it do