osem-fcy/spec/factories/question.rb

13 lines
284 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-09-03 20:48:28 +02:00
# Read about factories at https://github.com/thoughtbot/factory_bot
FactoryBot.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