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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-12-07 15:40:25 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-12-07 15:40:25 +0300
commitfc00d739fcf86b5dbd22cf0eb3c57072ea5b439f (patch)
tree4b4b52c67dd8a04ed9e725c105d65c263a9d7115 /qa/qa.rb
parent4c37cf684d75297a88db2dd1c286a68fd8aec701 (diff)
parentfe62860e05ca6e3ef7125fe92fdf52cd6f7b63df (diff)
Merge branch 'master' into qa/gb/selenium-handle-domain-sessions
* master: (694 commits) Conflicts: qa/qa/page/base.rb qa/qa/page/main/entry.rb
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 3089e515082..4ffa01ad06d 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -50,6 +50,10 @@ module QA
module Sandbox
autoload :Prepare, 'qa/scenario/gitlab/sandbox/prepare'
end
+
+ module Admin
+ autoload :HashedStorage, 'qa/scenario/gitlab/admin/hashed_storage'
+ end
end
end
@@ -64,9 +68,11 @@ module QA
module Main
autoload :Login, 'qa/page/main/login'
autoload :Menu, 'qa/page/main/menu'
+ autoload :OAuth, 'qa/page/main/oauth'
end
module Dashboard
+ autoload :Projects, 'qa/page/dashboard/projects'
autoload :Groups, 'qa/page/dashboard/groups'
end
@@ -82,6 +88,7 @@ module QA
module Admin
autoload :Menu, 'qa/page/admin/menu'
+ autoload :Settings, 'qa/page/admin/settings'
end
module Mattermost
@@ -98,6 +105,13 @@ module QA
end
##
+ # Classes describing shell interaction with GitLab
+ #
+ module Shell
+ autoload :Omnibus, 'qa/shell/omnibus'
+ end
+
+ ##
# Classes that make it possible to execute features tests.
#
module Specs