summaryrefslogtreecommitdiff
path: root/spec/factories/issues.rb
blob: 722095de5905efa1f2937a14862ef391008590c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FactoryGirl.define do
  factory :issue do
    title
    author
    project

    trait :closed do
      state :closed
    end

    trait :reopened do
      state :reopened
    end

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