osem-fcy/spec/factories/question.rb

11 lines
256 B
Ruby
Raw Normal View History

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :question do
2016-04-30 17:56:23 +02:00
title { Faker::Lorem.sentence }
question_type
2016-04-30 17:56:23 +02:00
conferences { [create(:conference)] }
answers { [create(:answer) ] }
end
end