debian-mirror-gitlab/spec/factories/events.rb

24 lines
752 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
FactoryGirl.define do
factory :event do
2017-08-17 22:00:37 +05:30
project factory: :empty_project
2016-09-29 09:46:39 +05:30
author factory: :user
2017-08-17 22:00:37 +05:30
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 }
2016-06-02 11:05:42 +05:30
factory :closed_issue_event do
action { Event::CLOSED }
target factory: :closed_issue
end
end
end