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:
authorSanad Liaquat <sliaquat@gitlab.com>2019-02-01 08:48:13 +0300
committerSanad Liaquat <sliaquat@gitlab.com>2019-02-01 08:50:24 +0300
commite8f8adfe27505a2a5feb665b680227ba5da07945 (patch)
treeebe54613ef092c69113b4adbcb150a7196d5525e /qa/spec/scenario/test/integration/oauth_spec.rb
parentc12863322595e77b03a5a089ff079bf13574a57b (diff)
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/spec/scenario/test/integration/oauth_spec.rb')
-rw-r--r--qa/spec/scenario/test/integration/oauth_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/qa/spec/scenario/test/integration/oauth_spec.rb b/qa/spec/scenario/test/integration/oauth_spec.rb
new file mode 100644
index 00000000000..c1c320be576
--- /dev/null
+++ b/qa/spec/scenario/test/integration/oauth_spec.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+describe QA::Scenario::Test::Integration::OAuth do
+ context '#perform' do
+ it_behaves_like 'a QA scenario class' do
+ let(:tags) { [:oauth] }
+ end
+ end
+end