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/qa.rb | |
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/qa.rb')
-rw-r--r-- | qa/qa.rb | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -99,6 +99,7 @@ module QA autoload :LDAPNoTLS, 'qa/scenario/test/integration/ldap_no_tls' autoload :LDAPTLS, 'qa/scenario/test/integration/ldap_tls' autoload :InstanceSAML, 'qa/scenario/test/integration/instance_saml' + autoload :OAuth, 'qa/scenario/test/integration/oauth' autoload :Kubernetes, 'qa/scenario/test/integration/kubernetes' autoload :Mattermost, 'qa/scenario/test/integration/mattermost' autoload :ObjectStorage, 'qa/scenario/test/integration/object_storage' @@ -342,6 +343,13 @@ module QA autoload :Login, 'qa/vendor/saml_idp/page/login' end end + + module Github + module Page + autoload :Base, 'qa/vendor/github/page/base' + autoload :Login, 'qa/vendor/github/page/login' + end + end end # Classes that provide support to other parts of the framework. |