summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/repository.rb
blob: 9b48e62a9f965b3984fb65a3ff6cf9dba3e30bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

module QA
  module Page
    module Project
      module Settings
        class Repository < Page::Base
          include Common

          view 'app/views/projects/protected_branches/shared/_index.html.haml' do
            element :protected_branches_settings
          end

          view 'app/views/projects/mirrors/_mirror_repos.html.haml' do
            element :mirroring_repositories_settings_section
          end

          def expand_protected_branches(&block)
            expand_section(:protected_branches_settings) do
              ProtectedBranches.perform(&block)
            end
          end

          def expand_mirroring_repositories(&block)
            expand_section(:mirroring_repositories_settings_section) do
              MirroringRepositories.perform(&block)
            end
          end
        end
      end
    end
  end
end

QA::Page::Project::Settings::Repository.prepend_if_ee('QA::EE::Page::Project::Settings::Repository')