9 lines
147 B
Ruby
9 lines
147 B
Ruby
FactoryBot.define do
|
|
factory :survey_question, :class => 'Survey::Question' do
|
|
title {"MyString"}
|
|
text {"MyText"}
|
|
typ {1}
|
|
end
|
|
|
|
end
|