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 11:59:55 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-01-22 11:59:55 +0300
commitd0b08f1c50b0b4106c0ae5f398912aab596a447a (patch)
tree4135671cfe12d4c9ec3eb69f025898f9773ddbd5 /qa/qa.rb
parent63dbcd24836b4b1da3f7c1d61851b6603a4c4461 (diff)
Add GitLab Runner service to GitLab QA
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 4803432aeee..5c277b95517 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -126,10 +126,13 @@ module QA
end
##
- # Classes describing shell interaction with GitLab
+ # Classes describing services being part of GitLab and how we can interact
+ # with these services, like through the shell.
#
- module Shell
- autoload :Omnibus, 'qa/shell/omnibus'
+ module Service
+ autoload :Shellable, 'qa/service/shellable'
+ autoload :Omnibus, 'qa/service/omnibus'
+ autoload :Runner, 'qa/service/runner'
end
##