osem-fcy/spec/factories/event_users.rb

14 lines
250 B
Ruby
Raw Normal View History

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
2014-06-23 19:07:50 +03:00
factory :event_user do
user
2014-06-23 19:07:50 +03:00
Hash[EventUser::ROLES].values.each do |role|
factory role do
event_role role
end
end
end
end