summaryrefslogtreecommitdiff
path: root/qa/qa.rb
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-06-06 19:43:50 +0200
committerRémy Coutable <remy@rymai.me>2018-06-06 20:12:29 +0200
commit9e5841a0ae2a57496b8479ffb67d3a7f1ed74e92 (patch)
tree7eef6354d6a004542cf375cbade6f75d040979c3 /qa/qa.rb
parentfddcfae6d8cc3790fe100584f8d7c09e014b01e1 (diff)
downloadgitlab-ce-9e5841a0ae2a57496b8479ffb67d3a7f1ed74e92.tar.gz
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'