mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 04:04:03 +00:00
12 lines
290 B
Ruby
12 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
|