summaryrefslogtreecommitdiff
path: root/spec/factories/events.rb
blob: 11d2016955cb27a7b6b432a699bc6f93d1898b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FactoryGirl.define do
  factory :event do
    project
    author factory: :user

    trait(:created)   { action Event::CREATED }
    trait(:updated)   { action Event::UPDATED }
    trait(:closed)    { action Event::CLOSED }
    trait(:reopened)  { action Event::REOPENED }
    trait(:pushed)    { action Event::PUSHED }
    trait(:commented) { action Event::COMMENTED }
    trait(:merged)    { action Event::MERGED }
    trait(:joined)    { action Event::JOINED }
    trait(:left)      { action Event::LEFT }
    trait(:destroyed) { action Event::DESTROYED }
    trait(:expired)   { action Event::EXPIRED }

    factory :closed_issue_event do
      action { Event::CLOSED }
      target factory: :closed_issue
    end
  end
end