osem-fcy/spec/factories/question.rb

11 lines
255 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)] }
2016-05-02 15:30:22 +02:00
answers { [create(:answer)] }
end
end