Files
fetsite/spec/factories/survey_choices.rb

10 lines
155 B
Ruby

FactoryBot.define do
factory :survey_choice, :class => 'Survey::Choice' do
text {"MyString"}
question {nil}
sort {1}
picture {"MyString"}
end
end