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-09-03 19:04:40 +0300
committerRémy Coutable <remy@rymai.me>2018-09-03 19:06:21 +0300
commitc43a6bb3b76c1dd51343488226e5611848348f79 (patch)
tree13f3bd5011165470ca848dcae227ed179aeb32af /qa/qa.rb
parent48541cacc050b931d884ba828d0901232308b4c4 (diff)
[QA] Move Page::Shared::ClonePanel to Page::Component::ClonePanel
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'qa/qa.rb')
-rw-r--r--qa/qa.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/qa/qa.rb b/qa/qa.rb
index 8e23b444f3b..43313d15645 100644
--- a/qa/qa.rb
+++ b/qa/qa.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
$: << File.expand_path(File.dirname(__FILE__))
Encoding.default_external = 'UTF-8'
@@ -212,10 +214,6 @@ module QA
end
end
- module Shared
- autoload :ClonePanel, 'qa/page/shared/clone_panel'
- end
-
module Profile
autoload :PersonalAccessTokens, 'qa/page/profile/personal_access_tokens'
end
@@ -249,6 +247,7 @@ module QA
# Classes describing components that are used by several pages.
#
module Component
+ autoload :ClonePanel, 'qa/page/component/clone_panel'
autoload :Dropzone, 'qa/page/component/dropzone'
autoload :Select2, 'qa/page/component/select2'
end