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
path: root/qa/qa.rb
diff options
context:
space:
mode:
authorSanad Liaquat <sliaquat@gitlab.com>2018-10-10 18:02:43 +0300
committerSanad Liaquat <sliaquat@gitlab.com>2018-10-11 11:19:53 +0300
commit154ce29d05a7f5dc9058b518b889ae98a8833b78 (patch)
treecc7deeaa68b3fb6ea2f06aa3fa6357577111a7ba /qa/qa.rb
parentee6d9e2843d1f4ff5ad35cd1922e839f82971dbd (diff)
Initial commit
Use ACCEPT_INSECURE_CERTS env var and fix step Simplify saml signin Fix rubo cop offence Add missing # frozen_string_literal: true
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index a0511186e70..5d4d691827e 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -97,6 +97,7 @@ module QA
module Integration
autoload :Github, 'qa/scenario/test/integration/github'
autoload :LDAP, 'qa/scenario/test/integration/ldap'
+ autoload :InstanceSAML, 'qa/scenario/test/integration/instance_saml'
autoload :Kubernetes, 'qa/scenario/test/integration/kubernetes'
autoload :Mattermost, 'qa/scenario/test/integration/mattermost'
autoload :ObjectStorage, 'qa/scenario/test/integration/object_storage'
@@ -300,6 +301,18 @@ module QA
autoload :Config, 'qa/specs/config'
autoload :Runner, 'qa/specs/runner'
end
+
+ ##
+ # Classes that describe the structure of vendor/third party application pages
+ #
+ module Vendor
+ module SAMLIdp
+ module Page
+ autoload :Base, 'qa/vendor/saml_idp/page/base'
+ autoload :Login, 'qa/vendor/saml_idp/page/login'
+ end
+ end
+ end
end
QA::Runtime::Release.extend_autoloads!