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>2018-01-22 16:03:03 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-01-22 16:03:03 +0300
commit50a82f64e53d396ca91f52c4d25af60beb52a424 (patch)
treed56e2ea17f7d9cfbd2a07c220f8ec900a411853a /qa/qa.rb
parentd0b08f1c50b0b4106c0ae5f398912aab596a447a (diff)
Add end-to-end test for registering GitLab Runner
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 5c277b95517..24738b5531a 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -26,6 +26,7 @@ module QA
autoload :Group, 'qa/factory/resource/group'
autoload :Project, 'qa/factory/resource/project'
autoload :DeployKey, 'qa/factory/resource/deploy_key'
+ autoload :Runner, 'qa/factory/resource/runner'
end
module Repository
@@ -104,7 +105,9 @@ module QA
module Settings
autoload :Common, 'qa/page/project/settings/common'
autoload :Repository, 'qa/page/project/settings/repository'
+ autoload :CICD, 'qa/page/project/settings/ci_cd'
autoload :DeployKeys, 'qa/page/project/settings/deploy_keys'
+ autoload :Runners, 'qa/page/project/settings/runners'
end
end
@@ -130,7 +133,7 @@ module QA
# with these services, like through the shell.
#
module Service
- autoload :Shellable, 'qa/service/shellable'
+ autoload :Shellout, 'qa/service/shellout'
autoload :Omnibus, 'qa/service/omnibus'
autoload :Runner, 'qa/service/runner'
end