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:
authorRémy Coutable <remy@rymai.me>2018-06-06 20:43:50 +0300
committerRémy Coutable <remy@rymai.me>2018-06-06 21:12:29 +0300
commit9e5841a0ae2a57496b8479ffb67d3a7f1ed74e92 (patch)
tree7eef6354d6a004542cf375cbade6f75d040979c3 /qa/qa.rb
parentfddcfae6d8cc3790fe100584f8d7c09e014b01e1 (diff)
Improve the Runtime::API classes
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 7f2da05dd63..503379823f4 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -12,7 +12,11 @@ module QA
autoload :Browser, 'qa/runtime/browser'
autoload :Env, 'qa/runtime/env'
autoload :Address, 'qa/runtime/address'
- autoload :API, 'qa/runtime/api'
+
+ module API
+ autoload :Client, 'qa/runtime/api/client'
+ autoload :Request, 'qa/runtime/api/request'
+ end
module Key
autoload :Base, 'qa/runtime/key/base'