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:
authorLin Jen-Shin <godfat@godfat.org>2018-03-09 10:54:20 +0300
committerLin Jen-Shin <godfat@godfat.org>2018-03-29 14:40:32 +0300
commit9a538b9eebd6aed362c6ed86445d96c8e06ffdf2 (patch)
tree93c933872c10f026f3cc4d2be94db0460daa67b8 /qa/qa.rb
parent8230b774b5a6375d9b84c71e72c8e41e3bfd7fad (diff)
Introduce Key namespace so we could put more keys
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 7220af5088e..f2ad43cd04a 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -11,9 +11,12 @@ module QA
autoload :Scenario, 'qa/runtime/scenario'
autoload :Browser, 'qa/runtime/browser'
autoload :Env, 'qa/runtime/env'
- autoload :RSAKey, 'qa/runtime/rsa_key'
autoload :Address, 'qa/runtime/address'
autoload :API, 'qa/runtime/api'
+
+ module Key
+ autoload :RSA, 'qa/runtime/key/rsa'
+ end
end
##