10 lines
215 B
Ruby
10 lines
215 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :conference_registraton_form_field do
|
|
conference_id 1
|
|
registration_form_field_id 1
|
|
order 1
|
|
end
|
|
end
|