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

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

module QA
  module Resource
    class Design < Base
      attribute :issue do
        Issue.fabricate_via_api!
      end

      attribute :filepath do
        ::File.absolute_path(::File.join('spec', 'fixtures', @filename))
      end

      attribute :id
      attribute :filename

      def initialize
        @filename = 'banana_sample.gif'
      end

      # TODO This will be replaced as soon as file uploads over GraphQL are implemented
      def fabricate!
        issue.visit!

        Page::Project::Issue::Show.perform do |issue|
          issue.add_design(filepath)
        end
      end
    end
  end
end