diff options
author | Rémy Coutable <remy@rymai.me> | 2018-06-06 19:43:50 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-06-06 20:12:29 +0200 |
commit | 9e5841a0ae2a57496b8479ffb67d3a7f1ed74e92 (patch) | |
tree | 7eef6354d6a004542cf375cbade6f75d040979c3 /qa/qa.rb | |
parent | fddcfae6d8cc3790fe100584f8d7c09e014b01e1 (diff) | |
download | gitlab-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.rb | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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' |