summaryrefslogtreecommitdiff
path: root/spec/factories/issues.rb
blob: 7e09f1ba8ea7069de242ad299f8e14ca9b25a4fd (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
35
36
FactoryGirl.define do
  sequence :issue_created_at do |n|
    4.hours.ago + ( 2 * n ).seconds
  end

  factory :issue do
    title
    author
    project factory: :empty_project

    trait :confidential do
      confidential true
    end

    trait :closed do
      state :closed
    end

    trait :reopened do
      state :reopened
    end

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

    factory :labeled_issue do
      transient do
        labels []
      end

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