trabajo-afectivo/spec/factories/recent_view.rb

20 lines
469 B
Ruby
Raw Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
FactoryBot.define do
factory :recent_view do
transient do
o { Ticket.first }
user_role { :agent }
end
recent_view_object_id { ObjectLookup.by_name(o.class.name) }
o_id { o.id }
# assign to an existing user, if possible
created_by_id do
User.find { |u| u.role?(user_role.capitalize) }&.id ||
create(user_role).id
end
end
end