Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ci/support/monkey_patches/oauth2.rb')
-rw-r--r--spec/ci/support/monkey_patches/oauth2.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/ci/support/monkey_patches/oauth2.rb b/spec/ci/support/monkey_patches/oauth2.rb
new file mode 100644
index 00000000000..dfd5e319f00
--- /dev/null
+++ b/spec/ci/support/monkey_patches/oauth2.rb
@@ -0,0 +1,7 @@
+module OAuth2
+ class Client
+ def get_token(params, access_token_opts = {}, access_token_class = AccessToken)
+ OpenStruct.new(token: "some_token")
+ end
+ end
+end \ No newline at end of file