summaryrefslogtreecommitdiff
path: root/qa/qa/scenario
diff options
context:
space:
mode:
authorSanad Liaquat <sliaquat@gitlab.com>2019-02-01 10:48:13 +0500
committerSanad Liaquat <sliaquat@gitlab.com>2019-02-01 10:50:24 +0500
commite8f8adfe27505a2a5feb665b680227ba5da07945 (patch)
treeebe54613ef092c69113b4adbcb150a7196d5525e /qa/qa/scenario
parentc12863322595e77b03a5a089ff079bf13574a57b (diff)
downloadgitlab-ce-e8f8adfe27505a2a5feb665b680227ba5da07945.tar.gz
Add e2e QA test for logging in using GitHub OAuth
Adds the test itself and the vendor page object model for GitHub login pages.
Diffstat (limited to 'qa/qa/scenario')
-rw-r--r--qa/qa/scenario/test/integration/oauth.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/qa/qa/scenario/test/integration/oauth.rb b/qa/qa/scenario/test/integration/oauth.rb
new file mode 100644
index 00000000000..912156fbc29
--- /dev/null
+++ b/qa/qa/scenario/test/integration/oauth.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+module QA
+ module Scenario
+ module Test
+ module Integration
+ class OAuth < Test::Instance::All
+ tags :oauth
+ end
+ end
+ end
+ end
+end