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

file.rb « resource « factory « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2016d10ddae5edce6b56d324c4cccc5d0278c125 (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
module QA
  module Factory
    module Resource
      class File < Factory::Base
        attr_accessor :name,
                      :content,
                      :commit_message

        dependency Factory::Resource::Project, as: :project do |project|
          project.name = 'project-with-new-file'
        end

        def initialize
          @name = 'QA Test - File name'
          @content = 'QA Test - File content'
          @commit_message = 'QA Test - Commit message'
        end

        def fabricate!
          project.visit!

          Page::Project::Show.act { go_to_new_file! }

          Page::File::Form.perform do |page|
            page.add_name(@name)
            page.add_content(@content)
            page.add_commit_message(@commit_message)
            page.commit_changes
          end
        end
      end
    end
  end
end