提交 771cef98 编写于 作者: G Grzegorz Bizon

Merge branch...

Merge branch '50991-qa-page-shared-clonepanel-should-be-moved-to-page-component-clonepanel-qa' into 'master'

Resolve "[QA] Page::Shared::ClonePanel should be moved to Page::Component::ClonePanel"

Closes #50991

See merge request gitlab-org/gitlab-ce!21479
# 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
......
# frozen_string_literal: true
module QA
module Page
module Shared
module Component
module ClonePanel
def self.included(base)
base.view 'app/views/shared/_clone_panel.html.haml' do
......
# frozen_string_literal: true
module QA
module Page
module Project
......
......@@ -2,7 +2,7 @@ module QA
module Page
module Project
class Show < Page::Base
include Page::Shared::ClonePanel
include Page::Component::ClonePanel
view 'app/views/projects/_last_push.html.haml' do
element :create_merge_request
......
# frozen_string_literal: true
module QA
module Page
module Project
module Wiki
class Show < Page::Base
include Page::Shared::ClonePanel
include Page::Component::ClonePanel
view 'app/views/projects/wikis/pages.html.haml' do
element :clone_repository_link, 'Clone repository'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册