diff options
author | Markus Koller <markus-koller@gmx.ch> | 2017-01-31 11:21:29 +0100 |
---|---|---|
committer | Alexis Reigel <mail@koffeinfrei.org> | 2017-03-07 15:00:29 +0100 |
commit | eefbc837301acc49a33617063faafa97adee307e (patch) | |
tree | b46f35df1792744897dfe1d31d9a519d19f09669 /spec/initializers | |
parent | 93daeee16428707fc348f8c45215854aed6e117a (diff) | |
download | gitlab-ce-eefbc837301acc49a33617063faafa97adee307e.tar.gz |
Only use API scopes for personal access tokens
Diffstat (limited to 'spec/initializers')
-rw-r--r-- | spec/initializers/doorkeeper_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/initializers/doorkeeper_spec.rb b/spec/initializers/doorkeeper_spec.rb new file mode 100644 index 00000000000..32133edece7 --- /dev/null +++ b/spec/initializers/doorkeeper_spec.rb @@ -0,0 +1,12 @@ +require 'spec_helper' +require_relative '../../config/initializers/doorkeeper' + +describe Doorkeeper.configuration do + it 'default_scopes matches Gitlab::Auth::DEFAULT_SCOPES' do + expect(subject.default_scopes).to eq Gitlab::Auth::DEFAULT_SCOPES + end + + it 'optional_scopes matches Gitlab::Auth::OPTIONAL_SCOPES' do + expect(subject.optional_scopes).to eq Gitlab::Auth::OPTIONAL_SCOPES + end +end |