2019-01-22 16:35:01 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :history do
|
2019-02-10 12:24:22 +00:00
|
|
|
transient do
|
|
|
|
o { Ticket.first }
|
|
|
|
end
|
|
|
|
|
2019-01-22 16:35:01 +00:00
|
|
|
association :history_type, factory: :'history/type'
|
2019-02-10 12:24:22 +00:00
|
|
|
o_id { o.id }
|
2019-01-22 16:35:01 +00:00
|
|
|
created_by_id { 1 }
|
2019-02-10 12:24:22 +00:00
|
|
|
|
|
|
|
history_object_id do
|
|
|
|
History::Object.lookup(name: o.class.name)&.id || create(:'history/object', name: o.class.name).id
|
|
|
|
end
|
2019-01-22 16:35:01 +00:00
|
|
|
end
|
|
|
|
end
|