diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-11-18 13:16:36 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-11-18 13:16:36 +0000 |
commit | 311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch) | |
tree | 07e7870bca8aed6d61fdcc810731c50d2c40af47 /spec/requests/oauth | |
parent | 27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff) | |
download | gitlab-ce-311b0269b4eb9839fa63f80c8d7a58f32b8138a0.tar.gz |
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'spec/requests/oauth')
-rw-r--r-- | spec/requests/oauth/applications_controller_spec.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/requests/oauth/applications_controller_spec.rb b/spec/requests/oauth/applications_controller_spec.rb new file mode 100644 index 00000000000..78f0cedb56f --- /dev/null +++ b/spec/requests/oauth/applications_controller_spec.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +require 'spec_helper' + +RSpec.describe Oauth::ApplicationsController do + let_it_be(:user) { create(:user) } + let_it_be(:application) { create(:oauth_application, owner: user) } + let_it_be(:show_path) { oauth_application_path(application) } + let_it_be(:create_path) { oauth_applications_path } + + before do + sign_in(user) + end + + include_examples 'applications controller - GET #show' + + include_examples 'applications controller - POST #create' +end |