summaryrefslogtreecommitdiff
path: root/qa/qa/factory/resource/issue.rb
blob: 9b444cb0bf16d3483cca783a9a6d1a94263abeec (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
module QA
  module Factory
    module Resource
      class Issue < Factory::Base
        attr_accessor :title, :description, :project

        dependency Factory::Resource::Project, as: :project do |project|
          project.name = 'project-for-issues'
          project.description = 'project for adding issues'
        end

        product :project
        product :title

        def fabricate!
          project.visit!

          Page::Project::Show.act do
            go_to_new_issue
          end

          Page::Project::Issue::New.perform do |page|
            page.add_title(@title)
            page.add_description(@description)
            page.create_new_issue
          end
        end
      end
    end
  end
end