summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/settings/main.rb
blob: d8cf1d49dd226d8776f67bf05cad51b7a1dc188b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module QA
  module Page
    module Project
      module Settings
        class Main < Page::Base
          include Common

          view 'app/views/projects/edit.html.haml' do
            element :advanced_settings
          end

          def expand_advanced_settings(&block)
            expand_section(:advanced_settings) do
              Advanced.perform(&block)
            end
          end
        end
      end
    end
  end
end