mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
16 lines
236 B
Ruby
16 lines
236 B
Ruby
FactoryGirl.define do
|
|
factory :role do
|
|
|
|
factory :admin_role do
|
|
name 'Admin'
|
|
end
|
|
|
|
factory :organizer_role do
|
|
name 'Organizer'
|
|
end
|
|
|
|
factory :participant_role do
|
|
name 'Participant'
|
|
end
|
|
end
|
|
end
|