13 lines
290 B
Ruby
13 lines
290 B
Ruby
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||
|
|
|
||
|
|
FactoryGirl.define do
|
||
|
|
factory :question do
|
||
|
|
title 'blah'
|
||
|
|
question_type
|
||
|
|
after(:build) do |question|
|
||
|
|
question.answers << build(:answer)
|
||
|
|
question.conferences << build(:conference)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|