osem-fcy/spec/factories/event_users.rb
2018-09-06 00:42:28 +02:00

15 lines
278 B
Ruby

# frozen_string_literal: true
# Read about factories at https://github.com/thoughtbot/factory_bot
FactoryBot.define do
factory :event_user do
user
Hash[EventUser::ROLES].each_value do |role|
factory role do
event_role role
end
end
end
end