retrospring/spec/factories/answers.rb
2020-04-19 17:27:42 +02:00

6 lines
168 B
Ruby

FactoryBot.define do
factory :answer do |u|
u.sequence(:content) { |n| "This is an answer. I'm number #{n}!" }
u.user { FactoryBot.create(:user) }
end
end