Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.rb « milestone « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42efbd4ea3048595fcdd9b561ace00b2cdd4926b (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
# frozen_string_literal: true

module QA
  module Page
    module Milestone
      class Show < Page::Base
        include Support::Dates

        view 'app/views/shared/milestones/_description.html.haml' do
          element :milestone_description_content
          element :milestone_title_content, required: true
        end

        view 'app/views/shared/milestones/_sidebar.html.haml' do
          element :due_date_content
          element :start_date_content
        end

        def has_due_date?(due_date)
          formatted_due_date = format_date(due_date)
          has_element?(:due_date_content, text: formatted_due_date)
        end

        def has_start_date?(start_date)
          formatted_start_date = format_date(start_date)
          has_element?(:start_date_content, text: formatted_start_date)
        end
      end
    end
  end
end

QA::Page::Milestone::Show.prepend_if_ee('QA::EE::Page::Milestone::Show')