diff options
author | Sanad Liaquat <sliaquat@gitlab.com> | 2019-02-01 10:48:13 +0500 |
---|---|---|
committer | Sanad Liaquat <sliaquat@gitlab.com> | 2019-02-01 10:50:24 +0500 |
commit | e8f8adfe27505a2a5feb665b680227ba5da07945 (patch) | |
tree | ebe54613ef092c69113b4adbcb150a7196d5525e /qa/spec | |
parent | c12863322595e77b03a5a089ff079bf13574a57b (diff) | |
download | gitlab-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/spec')
-rw-r--r-- | qa/spec/scenario/test/integration/oauth_spec.rb | 9 |
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 |