summaryrefslogtreecommitdiff
path: root/qa/qa/page/file/shared/commit_message.rb
blob: ce3b1e9939c31643df35ccf43388f29afde8a6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module QA
  module Page
    module File
      module Shared
        module CommitMessage
          def self.included(base)
            base.view 'app/views/shared/_commit_message_container.html.haml' do
              element :commit_message, "text_area_tag 'commit_message'" # rubocop:disable QA/ElementWithPattern
            end
          end

          def add_commit_message(message)
            fill_in 'commit_message', with: message
          end
        end
      end
    end
  end
end