summaryrefslogtreecommitdiff
path: root/spec/factories/issues.rb
blob: 5ed6b017dee0aa6a4c1d1069e37d31c21467c072 (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
FactoryBot.define do
  factory :issue do
    title { generate(:title) }
    author
    project

    trait :confidential do
      confidential true
    end

    trait :opened do
      state :opened
    end

    trait :closed do
      state :closed
    end

    factory :closed_issue, traits: [:closed]
    factory :reopened_issue, traits: [:opened]

    factory :labeled_issue do
      transient do
        labels []
      end

      after(:create) do |issue, evaluator|
        issue.update_attributes(labels: evaluator.labels)
      end
    end
  end
end